Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[src] Speed fix to online decoding (thanks: David van Leeuwen) #2180

Merged
merged 2 commits into from
Jan 25, 2018

Conversation

danpovey
Copy link
Contributor

This is a fix to a problem I discovered due to this kaldi-help conversation:

https://groups.google.com/d/msgid/kaldi-help/d362c3b1-24af-41c5-8ead-7a9cea212681%40googlegroups.com

It turns out that the call to ComputeSimpleNnetContext() is slow after you call
ModifyNnetIvectorPeriod(), because the Modulus() of the network increases
(and as it happens it causes a bunch of unnecessary computation because
that relates to the ivectors, not the main input). This patch should fix the slowness
by computing the context before ModifyNnetIvectorPeriod().

@davidavdav
Copy link
Contributor

These are the updated results:

model old setup time new setup time real time factor
nnet2 1.1 s 0.9 s 0.232
nnet3 tdnn 9.7 s 1.1 s 0.093
neet3 tdnn lstm 13.9 s 2.2 s 0.245

Where new setup time is measure using this PR.

Thanks for fixing this!

@davidavdav
Copy link
Contributor

Please note that the setup times above include a runtime

      SetBatchnormTestMode(true, &am_nnet.GetNnet());
      SetDropoutTestMode(true, &am_nnet.GetNnet());
      CollapseModel(CollapseModelConfig(), &am_nnet.GetNnet());

but I haven't timed yet if leaving that out (and moving that to model preparation time) makes much of a difference. I assume the operation is idem-potent.

@danpovey
Copy link
Contributor Author

yes it's idempotent.

@danpovey danpovey merged commit f861b00 into kaldi-asr:master Jan 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants