Instructions to use sgonzalez2000/dermai-efficientnet-b0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sgonzalez2000/dermai-efficientnet-b0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="sgonzalez2000/dermai-efficientnet-b0") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("sgonzalez2000/dermai-efficientnet-b0") model = AutoModelForImageClassification.from_pretrained("sgonzalez2000/dermai-efficientnet-b0", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
---
|
| 2 |
base_model: google/efficientnet-b0
|
|
|
|
| 3 |
license: apache-2.0
|
| 4 |
tags:
|
| 5 |
- image-classification
|
|
|
|
| 1 |
---
|
| 2 |
base_model: google/efficientnet-b0
|
| 3 |
+
library_name: transformers
|
| 4 |
license: apache-2.0
|
| 5 |
tags:
|
| 6 |
- image-classification
|