Spaces:
Runtime error
Runtime error
Commit ·
58f1e88
1
Parent(s): f5b0f03
readme
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Speaker Gender/Age Recognition
|
| 2 |
|
| 3 |
Predicts gender (male/female) and age group (20s/50s) from audio.
|
|
@@ -7,4 +16,5 @@ Predicts gender (male/female) and age group (20s/50s) from audio.
|
|
| 7 |
from huggingface_hub import InferenceClient
|
| 8 |
|
| 9 |
client = InferenceClient("YOUR_USERNAME/speaker-recognition")
|
| 10 |
-
result = client.post(json={"file": open("audio.wav", "rb")})
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Speaker Recognition
|
| 3 |
+
emoji: 🔥
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: gray
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
license: mit
|
| 9 |
+
---
|
| 10 |
# Speaker Gender/Age Recognition
|
| 11 |
|
| 12 |
Predicts gender (male/female) and age group (20s/50s) from audio.
|
|
|
|
| 16 |
from huggingface_hub import InferenceClient
|
| 17 |
|
| 18 |
client = InferenceClient("YOUR_USERNAME/speaker-recognition")
|
| 19 |
+
result = client.post(json={"file": open("audio.wav", "rb")})
|
| 20 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|