Instructions to use CristianR8/efficientnet-b0-cocoa with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CristianR8/efficientnet-b0-cocoa with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="CristianR8/efficientnet-b0-cocoa") 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("CristianR8/efficientnet-b0-cocoa") model = AutoModelForImageClassification.from_pretrained("CristianR8/efficientnet-b0-cocoa", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Training in progress epoch 0
Browse files- .gitignore +2 -0
- model.safetensors +1 -1
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step_*
|
| 2 |
+
epoch_*
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 16275624
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:711b80564b76e49bf3b3975ef8a19349dd193544420bd918cb9d2daa45c14d83
|
| 3 |
size 16275624
|