๐ธ Iris Species Classifier
A Random Forest Classifier trained to predict Iris flower species from 4 measurements: sepal length, sepal width, petal length, petal width.
Model Details
- Algorithm: Random Forest Classifier (scikit-learn)
- Task: Multi-class classification
- Classes: Setosa, Versicolor, Virginica
Live Demo
Usage
import joblib
model = joblib.load('flowerclassifier.pkl')
prediction = model.predict([[5.1, 3.5, 1.4, 0.2]])
GitHub
Full code: https://github.com/elishaaminu90-debug/FlowerPredictor