Image Classification
Transformers
Safetensors
English
siglip
Gender
Classification
art
realism
portrait
Male
Female
SigLIP2
Instructions to use prithivMLmods/Realistic-Gender-Classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Realistic-Gender-Classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Realistic-Gender-Classification") 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/Realistic-Gender-Classification") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Realistic-Gender-Classification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,6 +25,9 @@ tags:
|
|
| 25 |
|
| 26 |
> **Realistic-Gender-Classification** is a binary image classification model based on `google/siglip2-base-patch16-224`, designed to classify **gender** from realistic human portrait images. It can be used in **demographic analysis**, **personalization systems**, and **automated tagging** in large-scale image datasets.
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
```py
|
| 29 |
Classification Report:
|
| 30 |
precision recall f1-score support
|
|
|
|
| 25 |
|
| 26 |
> **Realistic-Gender-Classification** is a binary image classification model based on `google/siglip2-base-patch16-224`, designed to classify **gender** from realistic human portrait images. It can be used in **demographic analysis**, **personalization systems**, and **automated tagging** in large-scale image datasets.
|
| 27 |
|
| 28 |
+
> [!note]
|
| 29 |
+
*SigLIP 2: Multilingual Vision-Language Encoders with Improved Semantic Understanding, Localization, and Dense Features* https://arxiv.org/pdf/2502.14786
|
| 30 |
+
|
| 31 |
```py
|
| 32 |
Classification Report:
|
| 33 |
precision recall f1-score support
|