https://github.com/jagtaprathmesh19/Housing-Price-Prediction-ML-Project
End to end machine learning project under the guidance of Ineuron,
https://github.com/jagtaprathmesh19/Housing-Price-Prediction-ML-Project
docker flask flask-application html-css-javascript machine-learning python
Last synced: 11 months ago
JSON representation
End to end machine learning project under the guidance of Ineuron,
- Host: GitHub
- URL: https://github.com/jagtaprathmesh19/Housing-Price-Prediction-ML-Project
- Owner: jagtaprathmesh19
- License: apache-2.0
- Created: 2022-06-12T18:41:45.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T14:56:47.000Z (over 3 years ago)
- Last Synced: 2025-05-13T19:34:02.865Z (about 1 year ago)
- Topics: docker, flask, flask-application, html-css-javascript, machine-learning, python
- Language: Python
- Homepage:
- Size: 22.4 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Machine-Learning-Project
Machine Learning Deploy link:
[Housing Price Predictor](https://ml-regressor-app.herokuapp.com/)
### Creating conda Environment
```
conda create -p venv python==3.7 -y
```
```
conda activate venv
```
```
pip install -r requirements.txt
```
Now to Add files from terminal use:
```
git add .
```
or
```
git add
```
To check all versions maintained by git
```
git log
```
To create or update version/commit all changes by git
```
git commit -m ""
```
To send or save verison/changes to GitHub
```
git push origin main or git push
```
To check remote url
```
git remote -u
```
To setup CI/CD pipeline in heroku we need 3 information
1. HEROKU_EMAIL = < jagtaprathmesh19@gmail.com >
2. HEROKU_API_KEY = <>
3. HEROKU_APP_NAME =
Build Docker Image
```
docker build -t : .
```
> Note: Image name for docker must be lowercas
To list out docker images
```
docker images
```
Run docker image
```
docker run -p 5000:5000 -e PORT=5000 187e678ae51c
```
To check running container in docker
```
docker ps
```
Tos stop docker conatiner
```
docker stop
```
```
python setup.py install
```
Install ipykernel
```
pip install ipykernel
```