-
Create the Decision Tree classifier and visualize it graphically. The purpose is if we feed any new data to this classifier, it would be able to predict the right class accordingly.
Dataset : https://bit.ly/3kXTdox
Sample Solution : https://bit.ly/2G6sYx9
Iris Species Prediction using Decision Tree Algorithm is a machine learning task of classifying the species of Iris flowers based on their physical characteristics. This task involves training a Decision Tree model on the Iris dataset, which includes measurements of sepal length, sepal width, petal length, and petal width for 150 Iris flowers of three different species: Iris setosa, Iris virginica, and Iris versicolor. The trained model is then used to predict the species of new, unseen Iris flowers based on their measurements.
Run my Project
git clone https://github.com/bhimrazy/Iris-Species-Prediction-using-Decision-Tree-Algorithm-GRIP.git
cd Iris-Species-Prediction-using-Decision-Tree-Algorithm-GRIP/app
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app
- scikit-learn - Machine Learning Library
- Pandas - Python Data Analysis Library
- Matplotlib - Visualization with Python
- Seaborn - Statistical Data Visualization
- FastAPI- Python Web Framework for building APIs