eesen icon indicating copy to clipboard operation
eesen copied to clipboard

decoding without the language model

Open HariKrishna-Vydana opened this issue 7 years ago • 2 comments

is there a way to decode without considering the influence of language model

HariKrishna-Vydana avatar Jan 01 '18 06:01 HariKrishna-Vydana

Greedy decoding? You can simply search for the sequence of peaks in the NN output. Or you could create a fake ARPA file format LM that has unity transition probabilities for all words, like a grammar?

fmetze avatar Jan 01 '18 16:01 fmetze

In:

https://github.com/srvk/eesen/blob/tf_clean/tf/ctc-am/test.py

You have --compute_ter that can give you the token error rate (without language model)

ramonsanabria avatar Feb 07 '18 04:02 ramonsanabria