Instructions to use kd13/Modern-SqueezeNet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kd13/Modern-SqueezeNet with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="kd13/Modern-SqueezeNet", trust_remote_code=True) pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModelForImageClassification model = AutoModelForImageClassification.from_pretrained("kd13/Modern-SqueezeNet", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,8 @@ tags:
|
|
| 9 |
- New
|
| 10 |
- Image
|
| 11 |
- Clf
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# SqueezeNet-SwiGLU (Modernized SqueezeNet Architecture)
|
|
|
|
| 9 |
- New
|
| 10 |
- Image
|
| 11 |
- Clf
|
| 12 |
+
metrics:
|
| 13 |
+
- accuracy
|
| 14 |
---
|
| 15 |
|
| 16 |
# SqueezeNet-SwiGLU (Modernized SqueezeNet Architecture)
|