File size: 428 Bytes
fb14c2e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

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