| # Speaker Gender/Age Recognition | |
| Predicts gender (male/female) and age group (20s/50s) from audio. | |
| ## Usage | |
| ```python | |
| from huggingface_hub import InferenceClient | |
| client = InferenceClient("YOUR_USERNAME/speaker-recognition") | |
| result = client.post(json={"file": open("audio.wav", "rb")}) |