Skip to content

This is my first Machine Learning Project as a project of ShapeAI's ML Bootcamp

Notifications You must be signed in to change notification settings

KaranSingh07/ML-flower-species-classifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Flower Species Classifier

A Supervised Machine Learning Classification Project

By Karan Singh Solanki as ShapeAI ML Bootcamp Project

Dataset used: iris_dataset (iris plants dataset) of sklearn datasets

Description...

  • It takes data of various flowers, each flower having length of petals and sepals (part of a flower).
  • Each flower is labelled with its species, there are total of 3 species (or classes)
  • This model learns from the data of flowers and their species

The task is, whenever a new flower data is given to the model, it should predict the species of the new flower.

Note: The "ML Flower Species Classifier K-Nearest Neighbour.ipynb" and "main.py" are same code. The former is with a good explanation of what's going on with proper documentation and explanation. The latter is only python code without any documentation.