Hi Team,
So I read a lot of discussion about whether or not to provide lm.binary and trie while training, and it became quite clear that these two are needed only during the inference time.
However, what if I want to see the model prediction without lm.binary and trie. I read somewhere in dscourse that we can opt to not give the paths of lm.binary and trie but in that case it picks them up from their default location data/lm/
I tried removing that folder or re-naming it but then it threw up this error that lm/binary path must exist and be readable.
Another thing that I did was to provide lm_alpha=0 and lm_beta=0. Will it totally de-activate the use of language model while inference.
I was doing this concept testing around small corpus just to verify the working of lm.binary and trie.
Kindly help