| # 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 | |
| ```python | |
| 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 🤗 | |