bzikst commited on
Commit
1abe85f
1 Parent(s): 2c853cc

Small fix in example usage

Browse files

I've tested this model and it returns age, female, male and child in this order

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -138,7 +138,7 @@ def process_func(
138
 
139
 
140
  print(process_func(signal, sampling_rate))
141
- # Age child female male
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))