Age / Gender
The Age/Gender model estimates age group and gender from facial images.
Feature Summary
- Age group range estimation
- Gender classification
- Confidence score provided
| Item | Details |
| Input | Frontal or near-frontal face image |
| Output | Age bucket, gender label, confidence |
| Recommended Environment | GPU recommended for batch processing |
Demo Library Download Options
| Option | Description | Download |
| Option A: Python SDK | Inference and post-processing utilities included | <python-sdk-download-url> |
| Option B: REST Sample | Single/batch request samples | <rest-sample-download-url> |
| Option C: Docker Demo | Offline demo environment | <docker-demo-download-url> |
Quick Start (Python SDK)
from safeai_demo import Client
client = Client(api_key="<your-demo-license-key>")
result = client.estimate_age_gender(image_path="face.jpg")
print(result)
License