Small fix in example usage
Browse filesI've tested this model and it returns age, female, male and child in this order
README.md
CHANGED
@@ -138,7 +138,7 @@ def process_func(
|
|
138 |
|
139 |
|
140 |
print(process_func(signal, sampling_rate))
|
141 |
-
# Age
|
142 |
# [[ 0.33793038 0.2715511 0.2275236 0.5009253 ]]
|
143 |
|
144 |
print(process_func(signal, sampling_rate, embeddings=True))
|
|
|
138 |
|
139 |
|
140 |
print(process_func(signal, sampling_rate))
|
141 |
+
# Age female male child
|
142 |
# [[ 0.33793038 0.2715511 0.2275236 0.5009253 ]]
|
143 |
|
144 |
print(process_func(signal, sampling_rate, embeddings=True))
|