https://github.com/maxhumber/diamond
Demo App • MVML
https://github.com/maxhumber/diamond
Last synced: 9 months ago
JSON representation
Demo App • MVML
- Host: GitHub
- URL: https://github.com/maxhumber/diamond
- Owner: maxhumber
- License: mit
- Created: 2020-03-23T11:05:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T20:00:19.000Z (almost 4 years ago)
- Last Synced: 2025-04-05T19:28:18.901Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 280 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Demo App for [Minimum Viable Machine Learning](https://www.katacoda.com/orm-max-humber/courses/mvml)
##### Local Environment Setup
1. Create environment:
```
python -m venv .venv
```
2. Activate
```
source .venv/bin/activate
```
3. Install dependencies:
```
pip install gunicorn scikit-learn pandas sklearn-pandas flask
```
4. Freeze dependencies:
```
pip freeze > requirements.txt
```
5. Run model:
```
python model.py
```
6. Run app:
```
python app.py
```