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
|
@@ -21,6 +21,8 @@ datasets:
|
|
| 21 |
|
| 22 |

|
| 23 |
|
|
|
|
|
|
|
| 24 |
```py
|
| 25 |
Classification Report:
|
| 26 |
precision recall f1-score support
|
|
|
|
| 21 |
|
| 22 |

|
| 23 |
|
| 24 |
+
*SigLIP 2: Multilingual Vision-Language Encoders with Improved Semantic Understanding, Localization, and Dense Features* https://arxiv.org/pdf/2502.14786
|
| 25 |
+
|
| 26 |
```py
|
| 27 |
Classification Report:
|
| 28 |
precision recall f1-score support
|