https://github.com/binkymilk/siri
A simple iris plant classifier built with React and Flask.
https://github.com/binkymilk/siri
flask iris-classification ml react
Last synced: 20 days ago
JSON representation
A simple iris plant classifier built with React and Flask.
- Host: GitHub
- URL: https://github.com/binkymilk/siri
- Owner: binkymilk
- Created: 2019-07-02T08:42:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-26T14:46:07.000Z (about 4 years ago)
- Last Synced: 2024-12-31T02:23:29.572Z (about 1 year ago)
- Topics: flask, iris-classification, ml, react
- Language: JavaScript
- Homepage:
- Size: 3.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Siri: Iris Plant Classifier
A simple iris plant classifier built with React and Flask, based on the example of the [ML-React-App-Template](https://github.com/kb22/ML-React-App-Template).
## Setup and Installation
1. Create a virtual environment inside the directory `service`.
```
$ cd service
$ python3 -m venv venv
```
2. Install dependencies.
```
$ cd ..
$ make deps
```
3. Run the React app.
```
$ make ui
```
4. Run the Flask app.
```
$ make api
```