Image Classification
Transformers
Safetensors
English
clip
zero-shot-image-classification
fairface
vision
Eval Results (legacy)
Instructions to use syntheticbot/gender-classification-clip with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use syntheticbot/gender-classification-clip with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="syntheticbot/gender-classification-clip") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForZeroShotImageClassification processor = AutoProcessor.from_pretrained("syntheticbot/gender-classification-clip") model = AutoModelForZeroShotImageClassification.from_pretrained("syntheticbot/gender-classification-clip") - Notebooks
- Google Colab
- Kaggle