Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,32 @@
|
|
| 1 |
---
|
| 2 |
title: Flower Classifier
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 5.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
license: apache-2.0
|
| 11 |
-
short_description: 'Flower classification using AutoGluon TabularPredictor '
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: Flower Classifier
|
| 3 |
+
colorFrom: green
|
| 4 |
+
colorTo: blue
|
|
|
|
| 5 |
sdk: gradio
|
| 6 |
+
sdk_version: 5.0.0
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# Tabular Flower Classifier
|
| 12 |
+
|
| 13 |
+
This Hugging Face Space uses an AutoGluon TabularPredictor to classify flowers based on their measurements.
|
| 14 |
+
|
| 15 |
+
## How it works
|
| 16 |
+
|
| 17 |
+
1. Adjust the feature sliders/inputs (sepal length, width, petal length, width, etc.)
|
| 18 |
+
2. Click **Predict** to get classification results
|
| 19 |
+
3. View the predicted flower class and confidence scores
|
| 20 |
+
|
| 21 |
+
## Model
|
| 22 |
+
|
| 23 |
+
The model is trained using AutoGluon's TabularPredictor on flower measurement data.
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
Use the interactive sliders and number inputs to set feature values, then click Predict to see which flower class the model predicts.
|
| 28 |
+
|
| 29 |
+
### Tips for best results:
|
| 30 |
+
- The first 4 features use sliders for easy adjustment
|
| 31 |
+
- Example presets are provided below the inputs for quick testing
|
| 32 |
+
- Try different combinations to explore the model's predictions
|