An open API service indexing awesome lists of open source software.

https://github.com/maxhumber/diamond

Demo App • MVML
https://github.com/maxhumber/diamond

Last synced: 9 months ago
JSON representation

Demo App • MVML

Awesome Lists containing this project

README

          

diamond

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
```