#include <sent/stddefs.h>
#include <sent/speech.h>
#include <sent/htk_hmm.h>
#include <sent/htk_param.h>
#include <sent/hmm.h>
#include <sent/hmm_calc.h>
関数 | |
boolean | calc_tied_mix_init (HMMWork *wrk) |
Initialize codebook cache area. | |
boolean | calc_tied_mix_prepare (HMMWork *wrk, int framenum) |
Setup codebook cache for the next incoming input. | |
static void | calc_tied_mix_extend (HMMWork *wrk, int reqframe) |
Expand the cache to time axis if needed. | |
void | calc_tied_mix_free (HMMWork *wrk) |
Free work area for tied-mixture calculation. | |
LOGPROB | calc_tied_mix (HMMWork *wrk) |
Compute the output probability of current state OP_State on tied-mixture model |
Tied-mixture 用のガウス混合分布計算ではキャッシュが考慮されます. 計算された混合分布の音響尤度はコードブック単位でフレームごとに キャッシュされ,同じコードブックが同じ時間でアクセスされた場合は そのキャッシュから値を返します.
calc_tied_mix.c で定義されています。
boolean calc_tied_mix_init | ( | HMMWork * | wrk | ) |
Initialize codebook cache area.
wrk | [i/o] HMM computation work area |
calc_tied_mix.c の 51 行で定義されています。
参照元 outprob_init().
boolean calc_tied_mix_prepare | ( | HMMWork * | wrk, | |
int | framenum | |||
) |
Setup codebook cache for the next incoming input.
wrk | [i/o] HMM computation work area | |
framenum | [in] length of the next input. |
calc_tied_mix.c の 69 行で定義されています。
参照元 outprob_prepare().
static void calc_tied_mix_extend | ( | HMMWork * | wrk, | |
int | reqframe | |||
) | [static] |
Expand the cache to time axis if needed.
wrk | [i/o] HMM computation work area | |
reqframe | [in] required frame length |
calc_tied_mix.c の 90 行で定義されています。
参照元 calc_tied_mix().
void calc_tied_mix_free | ( | HMMWork * | wrk | ) |
Free work area for tied-mixture calculation.
wrk | [i/o] HMM computation work area |
calc_tied_mix.c の 133 行で定義されています。
参照元 outprob_free().
Compute the output probability of current state OP_State on tied-mixture model
This function assumes that the OP_state is assigned to a tied-mixture codebook. Here the output probability of Gaussian mixture component referred by OP_state is consulted to the book level cache, and if not computed yet on that input frame time, it will be computed here.
wrk | [i/o] HMM computation work area |
calc_tied_mix.c の 154 行で定義されています。
参照元 outprob_init().