2020-07-17 17:44:29.616
2020-07-17 17:44:29.616 init opt 0 ms
2020-07-17 17:44:29.619 load fetrue pipe 3 ms
2020-07-17 17:44:29.619 read hmm in the final.mdl 0 ms
2020-07-17 17:44:34.778 read nnet3 in the final.mdl 5159 ms
2020-07-17 17:44:34.782 set nnet3 3 ms
LOG (kaldi-wake-word.exe[5.5-win]:kaldi::nnet3::Nnet::RemoveOrphanNodes():nnet3\nnet-nnet.cc:948) Removed 1 orphan nodes.
LOG (kaldi-wake-word.exe[5.5-win]:kaldi::nnet3::Nnet::RemoveOrphanComponents():nnet3\nnet-nnet.cc:847) Removing 2 orphan components.
LOG (kaldi-wake-word.exe[5.5-win]:kaldi::nnet3::ModelCollapser::Collapse():nnet3\nnet-utils.cc:1472) Added 1 components, removed 2
2020-07-17 17:44:34.816 collapse nnet3 34 ms
2020-07-17 17:44:34.816 config net 0 ms
LOG (kaldi-wake-word.exe[5.5-win]:kaldi::nnet3::CompileLooped():nnet3\nnet-compile-looped.cc:345) Spent 4.94883 seconds in looped compilation.
2020-07-17 17:44:44.627 load DecodableNnetSimpleLoopedInfo 9812 ms
2020-07-17 17:44:44.628 load HCLG 0 ms
2020-07-17 17:44:44.628 load words 0 ms
2020-07-17 17:44:44.628 init Ivector extractor 1 ms
2020-07-17 17:44:44.628 15012 ms
2020-07-17 17:44:34.778 read nnet3 in the final.mdl 5159 ms is as follow:
```cpp
am_nnet->Read(ki.Stream(), binary);
```
2020-07-17 17:44:44.627 load DecodableNnetSimpleLoopedInfo 9812 ms
```cpp
nnet3::DecodableNnetSimpleLoopedInfo *decodable_info = new nnet3::DecodableNnetSimpleLoopedInfo(*decodable_opts, am_nnet);
```
I find that change frames-per-chunk value can improve the load time. and then, the above is the load model time.
I want to continue to improve the load time.
Can I ask, is there any other method to improve?