Instructions to use prithivMLmods/Face-Confidence-SigLIP2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Face-Confidence-SigLIP2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Face-Confidence-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/Face-Confidence-SigLIP2") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Face-Confidence-SigLIP2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,6 +16,9 @@ tags:
|
|
| 16 |
|
| 17 |
> **Face-Confidence-SigLIP2** is a vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for **binary image classification**. It is trained to distinguish between images of **confident faces** and **unconfident faces** using the **SiglipForImageClassification** architecture.
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 19 |
```py
|
| 20 |
Classification report:
|
| 21 |
|
|
|
|
| 16 |
|
| 17 |
> **Face-Confidence-SigLIP2** is a vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for **binary image classification**. It is trained to distinguish between images of **confident faces** and **unconfident faces** using the **SiglipForImageClassification** architecture.
|
| 18 |
|
| 19 |
+
> [!note]
|
| 20 |
+
*SigLIP 2: Multilingual Vision-Language Encoders with Improved Semantic Understanding, Localization, and Dense Features* https://arxiv.org/pdf/2502.14786
|
| 21 |
+
|
| 22 |
```py
|
| 23 |
Classification report:
|
| 24 |
|