django-scikit-learn-tutorial
django-scikit-learn-tutorial copied to clipboard
A simple Django web app with a Scikit-Learn model
Django with Scikit-Learn Tutorial
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
To run locally
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!
