Instructions to use Saving-Willy/cetacean-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Saving-Willy/cetacean-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="Saving-Willy/cetacean-classifier", 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("Saving-Willy/cetacean-classifier", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
4c83cf7
1
Parent(s): d514464
Add tail.jpg
Browse files- .gitignore +1 -1
- tail.jpg +0 -0
.gitignore
CHANGED
|
@@ -132,4 +132,4 @@ old/
|
|
| 132 |
.vscode/
|
| 133 |
*.ckpt
|
| 134 |
|
| 135 |
-
*.jpg
|
|
|
|
| 132 |
.vscode/
|
| 133 |
*.ckpt
|
| 134 |
|
| 135 |
+
# *.jpg
|
tail.jpg
ADDED
|