This Repo is a Machine Learning program that classifies Iris flowers into three species: Iris-setosa, Iris-versicolor, and Iris-virginica based on their sepal and petal measurements. The program uses Logistic Regression, a simple and effective classification algorithm, to train a model on the Iris dataset and predict the species of new flowers.
The dataset contains the following columns:
sepal_lengthsepal_widthpetal_lengthpetal_widthare used as Features (numerical features used for training the model)species– Target variable indicating the species of the flower. Possible classes:- Iris-setosa
- Iris-versicolor
- Iris-virginica
This project requires Python 3.x and the following Python libraries:
- pandas
- scikit-learn
Install the required packages using pip:
pip install pandas
pip install scikit-learn 
