Image Classification
timm
English
classifier-lab
embry-os
automated-ml
beans
plant-disease
Eval Results (legacy)
Instructions to use grahamaco/beans-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- timm
How to use grahamaco/beans-classifier with timm:
import timm model = timm.create_model("hf_hub:grahamaco/beans-classifier", pretrained=True) - Notebooks
- Google Colab
- Kaggle
Upload config.json with huggingface_hub
Browse files- config.json +9 -0
config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"classes": [
|
| 3 |
+
"angular_leaf_spot",
|
| 4 |
+
"bean_rust",
|
| 5 |
+
"healthy"
|
| 6 |
+
],
|
| 7 |
+
"backbone": "efficientnet_b0",
|
| 8 |
+
"image_size": 224
|
| 9 |
+
}
|