Instructions to use aspends/coco_multiclass_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aspends/coco_multiclass_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="aspends/coco_multiclass_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_multiclass_classification") model = AutoModelForImageClassification.from_pretrained("aspends/coco_multiclass_classification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ probably proofread and complete it, then remove this comment. -->
|
|
| 13 |
|
| 14 |
# aspends/assignment_part_3
|
| 15 |
|
| 16 |
-
This model is a fine-tuned version of [google/vit-base-patch16-224-in21k](https://huggingface.co/google/vit-base-patch16-224-in21k) on
|
| 17 |
It achieves the following results on the evaluation set:
|
| 18 |
- Train Loss: 0.0932
|
| 19 |
- Validation Loss: 0.2218
|
|
|
|
| 13 |
|
| 14 |
# aspends/assignment_part_3
|
| 15 |
|
| 16 |
+
This model is a fine-tuned version of [google/vit-base-patch16-224-in21k](https://huggingface.co/google/vit-base-patch16-224-in21k) on the COCO dataset.
|
| 17 |
It achieves the following results on the evaluation set:
|
| 18 |
- Train Loss: 0.0932
|
| 19 |
- Validation Loss: 0.2218
|