SimpleML-App

This is an implementation of a Iris plant classifier using Flask and React.

How to use it

To run it first clone the repository.

$ git clone https://github.com/ghostbill/SimpleML-App

But before that make sure your node version is up to date. To run the front end execute the following command:

   $ python -m venv venv
   $ cd front/
   $ npm install
   $ npm run

After this your front end should be running at localhost:3000

To run the backend execute the following commands from the root of the app:

cd back/
pip3 install -r requirements.txt
python3 app.py

You can now go back to your browser and test it :)