sidekit

Error in importing sidekit in python on ubuntu

自闭症网瘾萝莉.ら 提交于 2019-12-11 05:13:56
问题 I'm tyring to use sidekit toolkit for speaker recognition and I have installed libsvm for Ubuntu, I'm using anaconda 3.5. When I try to import sidekit I get following import error >>> import sidekit >>> import theano Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/shivam/anaconda3/lib/python3.5/site-packages/sidekit/__init__.py", line 141, in <module> from sidekit.libsvm import * File "/home/shivam/anaconda3/lib/python3.5/site-packages/sidekit/libsvm/__init_

Got an error during UBM speaker-adaptation with sidekit

不想你离开。 提交于 2019-12-08 05:15:46
问题 I've already trained a UBM model and now I'm trying to implement the speaker-adaptation when I got following error. Exception: show enroll/something.wav is not in the HDF5 file I got two files "enroll" and "test" under the file "feat" which contains respectively features(.h5) for training and test, and my enroll_idmap is generated with the audios(.wav) only for training. And, my wav files and feat files are separated. I think I got a problem of idmap. "enroll/something.wav" is the rightid of

training UBM with sidekit from custom data

老子叫甜甜 提交于 2019-12-06 14:02:32
问题 I am trying to train GMM-UBM model from data that i have already extracted for emotion recognition with SIDEKIT(pretty much the same as speaker recognition. I also don't understand the HDF5 feature file system). My data is an ndarray with shape (1101,78) [78 are the number of acoustic features and 1101 the number of feature vectors(frames). ubm = sidekit.Mixture() llks = ubm.EM_uniform(anger, distribNb, iteration_min=3, iteration_max=10, llk_gain=0.01, do_init=True) The error that is thrown