I find that there are some codes in sphinx.linguist.acoustic about kaldi,
I'm new to sphinx, now I want use neural network in pocketsphinx, I had train an neural network using kaldi.
Does sphinx4 can convert kaldi model(I mean the Transition Model, not neural network) to poketsphinx file "mdef"?
Thanks!
Feiteng
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
As for conversion of transition to mdef, sphinx4 can does not need mdef, it can load tree file in a text format. You can see KaldiTextParser for details.
You can create mdef file too, it's not a very complex task. Sphinx4 does that internally but it does not dump the mdef in file.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, All:
I find that there are some codes in sphinx.linguist.acoustic about kaldi,
I'm new to sphinx, now I want use neural network in pocketsphinx, I had train an neural network using kaldi.
Does sphinx4 can convert kaldi model(I mean the Transition Model, not neural network) to poketsphinx file "mdef"?
Thanks!
Feiteng
Hello Feiteng
Sphinx4 supports Kaldi GMM models only, it does not support DNN models.
As for conversion of transition to mdef, sphinx4 can does not need mdef, it can load tree file in a text format. You can see KaldiTextParser for details.
You can create mdef file too, it's not a very complex task. Sphinx4 does that internally but it does not dump the mdef in file.
Thanks a lot!