tr_lat_cstr_1.cc
来自「这是处理语音信号的程序」· CC 代码 · 共 43 行
CC
43 行
// file: tr_lat_cstr_1.cc//// isip include files//#include "train_lattice.h"#include "train_lattice_constants.h"// method: default constructor//// arguments: none//// return: none//// this is the default constructor//Train_Lattice::Train_Lattice() { // set node statistics // num_arcs_d = TRAIN_LATTICE_DEFAULT_NUM_ARCS; num_nodes_d = TRAIN_LATTICE_DEFAULT_NUM_NODES; // set node pointers // lnode_d = (Train_Hash_table*)NULL; start_node_d = (Train_Lattice_node*)NULL; // set Train_Lattice generation infrmation // lang_model_d = (char_1*)NULL; utterance_d = (char_1*)NULL; model_set_d = (char_1*)NULL; // set likelihood scale factors // lm_scale_d = TRAIN_LATTICE_DEFAULT_SCALE; word_penalty_d = TRAIN_LATTICE_DEFAULT_PENALTY; // exit gracefully //}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?