This tutorial creates a Django web app that tests a simple classification model with the iris
dataset. This tutorial is performed on Mac OS, so some commands may be different for a PC.
Deployed App: https://iris-django.herokuapp.com/
Create your own app with this tutorial
pip3 install -r requirements.txt
python3 manage.py migrate
python3 manage.py runserver
In this tutorial, you will integrate a Decision Tree Classifier on the Iris dataset with a Django web app!