Image Classification
Transformers
ONNX
Safetensors
English
vit
vision-transformer
coral
coral-bleaching
NOAA
marine-ecosystem
Eval Results (legacy)
Instructions to use NMFS-OSI/noaa-esd-coral-bleaching-vit-classifier-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NMFS-OSI/noaa-esd-coral-bleaching-vit-classifier-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="NMFS-OSI/noaa-esd-coral-bleaching-vit-classifier-v1") 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("NMFS-OSI/noaa-esd-coral-bleaching-vit-classifier-v1") model = AutoModelForImageClassification.from_pretrained("NMFS-OSI/noaa-esd-coral-bleaching-vit-classifier-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload 3 files
Browse files- .gitattributes +3 -0
- 00_example.png +3 -0
- 01_example.png +3 -0
- 02_example.png +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
00_example.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
01_example.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
02_example.png filter=lfs diff=lfs merge=lfs -text
|
00_example.png
ADDED
|
Git LFS Details
|
01_example.png
ADDED
|
Git LFS Details
|
02_example.png
ADDED
|
Git LFS Details
|