kensho-technologies / pyctcdecode

A fast and lightweight python-based CTC beam search decoder for speech recognition.
Apache License 2.0
416 stars 89 forks source link

Fixed the order of argument of decode_batch in README.md #28

Closed cahya-wirawan closed 2 years ago

cahya-wirawan commented 2 years ago

Hi,

The README.md has an example of the function decode_batch: text_list = decoder.decode_batch(logits_list, pool) but I think it should be text_list = decoder.decode_batch(pool, logits_list)

gkucsko commented 2 years ago

thanks, nice catch!