Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 731 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 731 Bytes

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!