I'm using CTCBeamDecoder with default setttings. num_processes=10, max sequence length is 37 and the size of lexicon is around 3000 characters. The decoding speed is kinda slow now.
@anhle-uet change cutoff_prob to log_cutoff_prob in this line, and you'd better set cutoff_prob less than 1.0 (such as 0.99) in __init__ of CTCBeamDecoder.
I'm using CTCBeamDecoder with default setttings. num_processes=10, max sequence length is 37 and the size of lexicon is around 3000 characters. The decoding speed is kinda slow now.