Instructions to use prithivMLmods/Gender-Classifier-Mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Gender-Classifier-Mini with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Gender-Classifier-Mini") 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/Gender-Classifier-Mini") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Gender-Classifier-Mini") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,17 +1,19 @@
|
|
| 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 |
-
- gender
|
| 11 |
-
- male
|
| 12 |
-
- female
|
| 13 |
-
- siglip2
|
| 14 |
-
|
|
|
|
|
|
|
| 15 |
|
| 16 |

|
| 17 |
|
|
|
|
| 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 |
+
- gender
|
| 11 |
+
- male
|
| 12 |
+
- female
|
| 13 |
+
- siglip2
|
| 14 |
+
datasets:
|
| 15 |
+
- myvision/gender-classification
|
| 16 |
+
---
|
| 17 |
|
| 18 |

|
| 19 |
|