Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prathmesh-jagtap/housing-price-prediction-ml-project
End to end machine learning project under the guidance of Ineuron,
https://github.com/prathmesh-jagtap/housing-price-prediction-ml-project
docker flask flask-application html-css-javascript machine-learning python
Last synced: about 2 months ago
JSON representation
End to end machine learning project under the guidance of Ineuron,
- Host: GitHub
- URL: https://github.com/prathmesh-jagtap/housing-price-prediction-ml-project
- Owner: prathmesh-jagtap
- License: apache-2.0
- Created: 2022-06-12T18:41:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T14:56:47.000Z (about 2 years ago)
- Last Synced: 2023-03-06T01:52:25.081Z (almost 2 years 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 = < [email protected] >
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
```