#include <sent/stddefs.h>
#include <sent/htk_param.h>
#include <sent/htk_hmm.h>
rdhmmdef.cのインクルード依存関係図
マクロ定義 | |
#define | MAXBUFLEN 4096 |
Maximum length of a line in the input. | |
関数 | |
void | rderr (char *str) |
char * | read_token (FILE *fp) |
static void | conv_log_arc (HTK_HMM_INFO *hmm) |
void | init_hmm (HTK_HMM_INFO *hmm) |
boolean | rdhmmdef (FILE *fp, HTK_HMM_INFO *hmm) |
Main top routine to read in HTK HMM definition file. | |
変数 | |
char * | rdhmmdef_token |
Current token. | |
static char * | buf = NULL |
Local work area for token reading. | |
static int | line |
Input Line count. |
このファイルはまた,読み込み関数群で共通して用いられるトークン単位の ファイル読み込み関数を提供します. HMM 定義ファイルは read_token() によってトークン単位で順次読み込まれ, グローバル変数 rdhmmdef_token に格納されます.各関数群はこの rdhmmdef_token を参照して現在のトークンを得ます.
rdhmmdef.c で定義されています。
|
Output error message, with current reading status.
rdhmmdef.c の 60 行で定義されています。 参照元 codebook_add(), def_regtree_macro(), dens_add(), dens_read(), get_dens_data(), get_opttype_str(), get_state_data(), get_trans_data(), get_var_data(), htk_hmmdata_add(), htk_hmmdata_read(), rdhmmdef(), read_global_opt(), state_add(), tmix_read(), trans_add(), trans_read(), var_add(), と var_read(). |
|
Read next token and ste it to rdhmmdef_token.
rdhmmdef.c の 77 行で定義されています。 参照元 dens_read(), get_dens_data(), get_state_data(), get_trans_data(), get_var_data(), htk_hmmdata_read(), rdhmmdef(), read_global_opt(), regtree_read(), state_read(), tmix_read(), trans_read(), と var_read(). |
|
Convert all the transition probabilities to log10 scale.
rdhmmdef.c の 106 行で定義されています。 参照元 rdhmmdef(). |
|
Initialize the HMM definition data by setting default values.
rdhmmdef.c の 129 行で定義されています。 参照元 rdhmmdef(). |
|
Main top routine to read in HTK HMM definition file. A HTK HMM definition file will be read from fp. After reading, the parameter type is checked and calculate some statistics.
rdhmmdef.c の 174 行で定義されています。 参照元 init_hmminfo(). |