ksdkamesh99 / mlops-with-dvc

A trial project to understand ops around a Machine Learning project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MLOps - Devfest

The project is designed to for a talk at #devfestindia-2020

Video

DevfestIndia Talk Video

Topics to be convered

  1. Data versioning
  2. Building training pipelines
  3. Versioning models
  4. Deploying using docker and kubernetes

Recreate Steps for new project

Checkout demo steps here


Run this project

Pre-Requisites

  1. Python 3.7
  2. Pip

Setup the project

  1. Clone the repo
git clone <repo_url>
cd <repo-name>
  1. Pull the data from gdrive
dvc pull -r gdrive

It will ask for authorization, please enter the auth key from the URL

  1. Install requirements
pip install -r requirements.txt

Run project

  1. Run the application
python app/app.py
  1. Update model/any ML step and run
dvc repro
dvc push -r gdrive

DVC Notes

How is the pipeline created?

dvc run -n preprocess -d src/preprocess.py -d assets/original_data/train.csv  -o assets/preprocessed/  python src/preprocess.python
dvc run -n featurize -d src/preprocess.py -d assets/preprocessed/train.csv -d assets/preprocessed/train.csv   -o assets/featurized/  python src/featurize.py 
dvc run -fn train_test_eval  -d src/model.py -d assets/featurized -p model.random,model.split  -o assets/models  -M assets/eval/scores.json  python src/model.py 
dvc run -fn train_test_eval  -d src/model.py -d assets/featurized -p model.random,model.split  -o assets/models  -M assets/eval/scores.json  python src/model.py 

About

A trial project to understand ops around a Machine Learning project

License:Apache License 2.0


Languages

Language:Python 86.5%Language:Smarty 7.5%Language:Dockerfile 4.7%Language:Shell 1.4%