Instructions to use aspends/coco_binary_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aspends/coco_binary_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="aspends/coco_binary_classification") 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("aspends/coco_binary_classification") model = AutoModelForImageClassification.from_pretrained("aspends/coco_binary_classification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ base_model: google/vit-base-patch16-224-in21k
|
|
| 4 |
tags:
|
| 5 |
- generated_from_keras_callback
|
| 6 |
model-index:
|
| 7 |
-
- name: aspends/
|
| 8 |
results: []
|
| 9 |
---
|
| 10 |
|
|
|
|
| 4 |
tags:
|
| 5 |
- generated_from_keras_callback
|
| 6 |
model-index:
|
| 7 |
+
- name: aspends/assignment
|
| 8 |
results: []
|
| 9 |
---
|
| 10 |
|