Instructions to use prithivMLmods/Fashion-Mnist-SigLIP2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Fashion-Mnist-SigLIP2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Fashion-Mnist-SigLIP2") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("prithivMLmods/Fashion-Mnist-SigLIP2") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Fashion-Mnist-SigLIP2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
```py
|
| 2 |
Classification Report:
|
| 3 |
precision recall f1-score support
|
|
@@ -18,4 +31,4 @@ T-shirt / top 0.8142 0.9147 0.8615 6000
|
|
| 18 |
weighted avg 0.9179 0.9180 0.9172 60000
|
| 19 |
```
|
| 20 |
|
| 21 |
-

|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- google/siglip2-base-patch16-224
|
| 7 |
+
pipeline_tag: image-classification
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- fashion
|
| 11 |
+
- mnist
|
| 12 |
+
- siglip2
|
| 13 |
+
---
|
| 14 |
```py
|
| 15 |
Classification Report:
|
| 16 |
precision recall f1-score support
|
|
|
|
| 31 |
weighted avg 0.9179 0.9180 0.9172 60000
|
| 32 |
```
|
| 33 |
|
| 34 |
+

|