We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I generated HLG following the procedures in https://github.com/k2-fsa/icefall/blob/master/egs/librispeech/ASR/local/compile_hlg_using_openfst.py
Now, since k2 does not support minimization, I tried converting the resulting HLG to fst format and do det and min.
HLG_fst = kaldifst.utils.k2_to_openfst(HLG, olabels='aux_labels') kaldifst.determinize_star(HLG_fst)
HLG_fst = kaldifst.utils.k2_to_openfst(HLG, olabels='aux_labels')
kaldifst.determinize_star(HLG_fst)
But I get the error:
However, based on the definition here, I don't see why HLG is not functional. Could someone help? Thanks! https://www.openfst.org/twiki/bin/view/FST/FstGlossary#FunctionalDef
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I generated HLG following the procedures in
https://github.com/k2-fsa/icefall/blob/master/egs/librispeech/ASR/local/compile_hlg_using_openfst.py
Now, since k2 does not support minimization, I tried converting the resulting HLG to fst format and do det and min.
HLG_fst = kaldifst.utils.k2_to_openfst(HLG, olabels='aux_labels')
kaldifst.determinize_star(HLG_fst)
But I get the error:
[E] FST was not functional -> not determinizable
However, based on the definition here, I don't see why HLG is not functional. Could someone help? Thanks!
https://www.openfst.org/twiki/bin/view/FST/FstGlossary#FunctionalDef
The text was updated successfully, but these errors were encountered: