speaker-recognition / README.MD
AbosamraOnFire13's picture
Upload folder using huggingface_hub
387b29c verified
raw
history blame contribute delete
296 Bytes
# 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")})