crouchred / speaker-recognition-py3

Base on MFCC and GMM(基于MFCC和高斯混合模型的语音识别)
Apache License 2.0
245 stars 79 forks source link

"/tmp/person* ./mary" are this directories of wav files? #5

Closed mehadi-trackrep closed 5 years ago

mehadi-trackrep commented 5 years ago

Please tell me that is these directories stores the wav file of the person related in person folder and mary's speech in mary folder?

crouchred commented 5 years ago

'/tmp/person' stores the folder and './mary' stores the wav files. When using wildcard like '/tmp/person', it will use every folder detected as label. When using specific folder like ' ./mary', it will use folder name 'mary' as label.

mehadi-trackrep commented 5 years ago

Ok, Thanks!