@@ -15,19 +15,31 @@ BatchDecoder::BatchDecoder(ChainModel *const model) : model_(model) {
15
15
if (model_->wb_info != nullptr ) options.enable_word_level = true ;
16
16
if (model_->rnnlm_info != nullptr ) options.enable_rnnlm = true ;
17
17
18
- const char *usage = " Usage: decoder-batch.cpp [options]" ;
19
- kaldi::ParseOptions po (usage);
20
- kaldi::CuDevice::RegisterDeviceOptions (&po);
21
- kaldi::RegisterCuAllocatorOptions (&po);
22
- batched_decoder_config_.Register (&po);
23
-
24
- const char *argv[] = {
25
- " decoder-batch.cpp" ,
26
- // std::string("").c_str(),
27
- NULL
28
- };
29
-
30
- po.Read ((sizeof (argv)/sizeof (argv[0 ])) - 1 , argv);
18
+ // kaldi::CuDevice::RegisterDeviceOptions(&po); // only need if using fp16 (can't access device_options_ directly)
19
+ // kaldi::g_allocator_options // only need if need to customize cuda memory usage
20
+
21
+ batched_decoder_config_.cuda_online_pipeline_opts .use_gpu_feature_extraction = false ;
22
+ batched_decoder_config_.cuda_online_pipeline_opts .determinize_lattice = false ;
23
+
24
+ // decoder options
25
+ batched_decoder_config_.cuda_online_pipeline_opts .decoder_opts .default_beam = model_->model_spec .beam ;
26
+ batched_decoder_config_.cuda_online_pipeline_opts .decoder_opts .lattice_beam = model_->model_spec .lattice_beam ;
27
+ batched_decoder_config_.cuda_online_pipeline_opts .decoder_opts .max_active = model_->model_spec .max_active ;
28
+
29
+ // feature pipeline options
30
+ batched_decoder_config_.cuda_online_pipeline_opts .feature_opts .feature_type = " mfcc" ;
31
+ std::string model_dir = model_->model_spec .path ;
32
+ std::string conf_dir = join_path (model_dir, " conf" );
33
+ std::string mfcc_conf_filepath = join_path (conf_dir, " mfcc.conf" );
34
+ std::string ivector_conf_filepath = join_path (conf_dir, " ivector_extractor.conf" );
35
+
36
+ batched_decoder_config_.cuda_online_pipeline_opts .feature_opts .mfcc_config = mfcc_conf_filepath;
37
+ batched_decoder_config_.cuda_online_pipeline_opts .feature_opts .ivector_extraction_config = ivector_conf_filepath;
38
+ batched_decoder_config_.cuda_online_pipeline_opts .feature_opts .silence_weighting_config .silence_weight = model_->model_spec .silence_weight ;
39
+
40
+ // compute options
41
+ batched_decoder_config_.cuda_online_pipeline_opts .compute_opts .acoustic_scale = model_->model_spec .acoustic_scale ;
42
+ batched_decoder_config_.cuda_online_pipeline_opts .compute_opts .frame_subsampling_factor = model_->model_spec .frame_subsampling_factor ;
31
43
32
44
cuda_pipeline_ = NULL ;
33
45
}
0 commit comments