Instructions to use chlab/efficientnet_61_planet_detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chlab/efficientnet_61_planet_detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="chlab/efficientnet_61_planet_detection") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("chlab/efficientnet_61_planet_detection", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +2 -1
config.json
CHANGED
|
@@ -9,5 +9,6 @@
|
|
| 9 |
"dropout": 0.027804120950575217,
|
| 10 |
"width_mult": 1.060782511229692,
|
| 11 |
"depth_mult": 0.7752918857163054,
|
| 12 |
-
"size": "v2_s"
|
|
|
|
| 13 |
}
|
|
|
|
| 9 |
"dropout": 0.027804120950575217,
|
| 10 |
"width_mult": 1.060782511229692,
|
| 11 |
"depth_mult": 0.7752918857163054,
|
| 12 |
+
"size": "v2_s",
|
| 13 |
+
"model_type": "efficientnet_61_planet_detection"
|
| 14 |
}
|