Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dan-niles/iris-ml

Machine learning on the Iris dataset
https://github.com/dan-niles/iris-ml

iris-dataset machine-learning scikit-learn

Last synced: 5 days ago
JSON representation

Machine learning on the Iris dataset

Awesome Lists containing this project

README

        

# Machine Learning on the Iris Dataset

This repo contains a simple Python script to perform machine learning on the Iris dataset.

The Iris dataset is a classic dataset in machine learning and statistics. It is included in scikit-learn. The dataset contains 150 samples of three different species of Iris (Iris setosa, Iris virginica and Iris versicolor). Four features were measured from each sample: the length and the width of the sepals and petals, in centimeters.

## Libraries

The following libraries are used in this project:

- [Pandas](https://pandas.pydata.org/)
- [Numpy](https://numpy.org/)
- [Matplotlib](https://matplotlib.org/)
- [Scikit-learn](https://scikit-learn.org/stable/)

## References

Tutorial on ML on the Iris Dataset : [https://machinelearningmastery.com/machine-learning-in-python-step-by-step/](https://machinelearningmastery.com/machine-learning-in-python-step-by-step/)