# Load model directly
from transformers import AutoImageProcessor, AutoModelForImageClassification
processor = AutoImageProcessor.from_pretrained("ProjectPersonal/GenderClassifier")
model = AutoModelForImageClassification.from_pretrained("ProjectPersonal/GenderClassifier")Quick Links
GenderClassifier
Autogenerated by HuggingPics๐ค๐ผ๏ธ
Create your own image classifier for anything by running the demo on Google Colab.
Report any issues with the demo at the github repo.
Example Images
Human Female
Human Male
- Downloads last month
- 195
Spaces using ProjectPersonal/GenderClassifier 2
Evaluation results
- Accuracyself-reported0.889


# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ProjectPersonal/GenderClassifier") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")