Instructions to use google/efficientnet-b0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/efficientnet-b0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="google/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("google/efficientnet-b0") model = AutoModelForImageClassification.from_pretrained("google/efficientnet-b0") - Inference
- Notebooks
- Google Colab
- Kaggle
Commit History
Update README.md 2ee4db3
Create README.md ea2cbe2
Upload EfficientNetForImageClassification 62a9d82
Upload processor d5cdc37
Upload EfficientNetForImageClassification e30ab9e
Upload processor 34d42c8
initial commit c6b93f0
Alara Dirik commited on