Skip to content

katiehouse/django-scikit-learn-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!