0rb11's picture
Upload 2 files
fb14c2e verified

Iris Flower Classifier 🌸

This is a simple RandomForestClassifier trained on the classic Iris dataset using scikit-learn.

Model Performance

  • Accuracy: 1.00

How to Use

from joblib import load
model = load('model.joblib')
prediction = model.predict([[5.1, 3.5, 1.4, 0.2]])
print(prediction)

Dataset

  • Iris dataset from scikit-learn

Author

Generated by ChatGPT for upload to Hugging Face 🤗