Extraction package for MLOpsPython project


License
MIT
Install
pip install mlopspython-extraction==8761634318759538533639

Documentation

MLOpsPython

A real demo of Deep Learning project with preprocessing from development to production using code, ops and Machine Learning best practices. Production is a real time REST API.

project_workflow.png

Getting Started

Requirements, Download and install:

On windows your have to use "GitBash" only because all commands are linux bash commands.

git clone https://www.github.com/guillaume-chervet/MLOpsPython

cd MLOpsPython
chmod +x Makefile
./Makefile

# Download the model from here :
# https://github.com/guillaume-chervet/MLOpsPython/releases/download/v0.1.0/mlopspython_model.zip
# Unzip it 
curl -L https://github.com/guillaume-chervet/MLOpsPython/releases/download/v0.1.0/mlopspython_model.zip --output model.zip
unzip model.zip -d ./production/api/core/model
rm model.zip

cd production
docker-compose up
# webapp is now available at : http://localhost:4000
# api is available at : http://localhost:4000/health

Contribute