ml-demo-deployment-flask

Machine Learning Demo Deployment

This is a demo project to show how to make predictions using Machine Learning RandomForestClassifier model and its deployment using Flask API.

Table of Contents:

Project has two major parts:

Installation:

To run this project it is recommended to setup a conda (or virtual) environment by using requirements.txt file.

conda create --name <env> --file <requirements.txt> 
conda activate <your path> 

Run webapp:

export FLASK_APP=webApp/heart_disease_webapp
flask run

execute tests:

pytest -v tests/tests.py

Overview

minipic