hughpearse / DCU-CA683-workspace

0 stars 0 forks source link

Implement K-Nearest Neighbors #22

Closed hughpearse closed 5 years ago

hughpearse commented 5 years ago

Use K-Nearest Neighbors as a classifier to perform the following:

Implement a program that reads from the command line 5 parameters:

  1. Path to iris training dataset CSV file (comma separated with headers).
  2. Petal length of a sample
  3. Petal width of a sample
  4. Sepal width of a sample
  5. Sepal length of a sample

The program should output 1 text string to the command line.

  1. the name of the predicted species.

The iris dataset is available here https://github.com/hughpearse/DCU-CA683-workspace/blob/master/iris.csv

hughpearse commented 5 years ago

invalid