You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to kaldi-help
Hi,
There are two algorithms in Kaldi to perform the decoding with large language models (i.e., 60G ngrams). Which one is the popular trend? can you give us some suggestions. We plan to rewrite the decoder without Kaldi.
Daniel Povey
unread,
Dec 29, 2016, 9:51:32 PM12/29/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to kaldi-help
lattice + rescoring.
biglm turned out to be quite slow
> --
> You received this message because you are subscribed to the Google Groups
> "kaldi-help" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to kaldi-help+...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
4151...@qq.com
unread,
Jan 4, 2017, 2:22:37 AM1/4/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to kaldi-help, dpo...@gmail.com
I did some experiments, and I found the "TableCompose" process cost much time, e.g. around 2 second to compose a lattice (generated by a 10 second wav) with a 600M LM. It seems to be slow.
在 2016年12月30日星期五 UTC+8上午10:51:32,Dan Povey写道:
Daniel Povey
unread,
Jan 4, 2017, 2:37:42 AM1/4/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to 4151...@qq.com, kaldi-help
It depends how deep the lattices were (e.g. how big the beam was).
Also make sure you don't include initialization/loading time (e.g. the
time to load the FST) in that time.
And 'carpa' rescoring may be faster.
4151...@qq.com
unread,
Jan 4, 2017, 2:41:55 AM1/4/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to kaldi-help, 4151...@qq.com, dpo...@gmail.com
Thanks, I did not include the loading time (it usually costs more than 10 seconds). The lattice generation uses beam = 15, max-active=7000, and the wav length is around 10 seconds.
在 2017年1月4日星期三 UTC+8下午3:37:42,Dan Povey写道:
Daniel Povey
unread,
Jan 4, 2017, 2:43:15 AM1/4/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to 4151...@qq.com, kaldi-help
There is time taken in building certain internal tables, that will
only get taken for the first utterance, so you won't see the best
speed if you run it on just one utterance.