iris_classifier 2.2.0

Classifies irises into one of 3 species: Setosa, Versicolor, Virginica.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## Download
1. `git clone https://github.com/Siiir/iris_classifier`
   
## Run
3. `cd iris_classifier`
4. `cat ./data/unclassified_irises.csv | cargo run --release`
### Above approach requires
1. `cargo` that is usually installed with [rustup]https://www.rust-lang.org/tools/install

## Help (passing arguments to app)
You can also pass arguments to the app after --, which is cargo's way to separate cargo args from app args.  
Try: `cargo r -r -- --help`

## Documentation
[Documentation of functions other than main.](https://docs.rs/iris_classifier/latest/ic/)