📄 hmm.h
字号:
/** * @file hmm.h * @author Akinobu LEE * @date Thu Feb 10 14:54:06 2005 * * <EN> * @brief Hidden Marcov Model for recognition. * * This file defines %HMM instance structure for recognition. * When recognition, the required word %HMM or tree lexicon will be built * using these structures referencing word dictionary and HTK %HMM Acoustic * Model (defined in htk_hmm.h), and actual likelihood computation. * </EN> * <JA> * @brief 千急纷换脱の Hidden Marcov Model * * このファイルでは, 千急における%HMMの菇陇挛を年盗していますˉ * 千急箕には, 辑今および不读モデル菇陇挛 (htk_hmm.h) を傅に * 涩妥な帽胳%HMMや腾菇陇步辑今がこの菇陇挛を脱いて菇蜜され, * 不读锑刨纷换はこの惧で乖われますˉ * </JA> * * $Revision: 1.4 $ * *//* * Copyright (c) 1991-2006 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology * Copyright (c) 2005-2006 Julius project team, Nagoya Institute of Technology * All rights reserved */#ifndef __SENT_HMM_NEW2_H__#define __SENT_HMM_NEW2_H__#include <sent/stddefs.h>#include <sent/htk_hmm.h>#include <sent/htk_param.h>/// Transition arc of %HMM statetypedef struct _a_cell { LOGPROB a; ///< Transition probability in log10 int arc; ///< Transition destination in state ID struct _a_cell *next; ///< Pointer to next transition on the same state} A_CELL;/// %HMM Statetypedef struct { A_CELL *ac; ///< List of transition arcs from this state /** * @brief Pointer to corresponding output state definition * * When a triphone model is used, if this state is located as a * part of phoneme %HMM on @em word-edge, the corresponding * @em pseudo-triphone, i.e. "*-e+g", "k-a+*", should be assigned. * Otherwise, i.e. if this state is located at @em internal position * of a word, pointer to the corresponding @em physical * (actually defined) %HMM will be assigned. * When a triphone model is used, phoneme %HMMs on @em word-edge should * be @em pseudo-triphone, i.e. "*-e+g", "k-a+*". In this case, the * belonging state should hold the output probability function * in CD_State_Set. * Otherwise, i.e. if this state is located at @em internal position * of a word, pointer to the corresponding @em physical * (actually defined) %HMM will be assigned. */ union { HTK_HMM_State *state; ///< Pointer to the mapped physical %HMM CD_State_Set *cdset; ///< Pointer to the pseudo %HMM } out; boolean is_pseudo_state; ///< TRUE if pseudo %HMM is assigned, FALSE if physical %HMM is assigned} HMM_STATE;/** * @brief %HMM state sequence * * @note This assumes that there is only one transition that goes outside * this %HMM state sequence. */typedef struct { int len; ///< Length of state HMM_STATE *state; ///< Array of state#ifndef MULTIPATH_VERSION LOGPROB accept_ac_a; ///< Transition probability outside this sequence (fixed to one)#endif} HMM;/** * Token definition for viterbi segmentation. * */typedef struct _seg_token { int last_id; ///< ID of last unit int last_end_frame; ///< Frame at which the last unit ends LOGPROB last_end_score; ///< Score at which the last unit ends struct _seg_token *next; ///< Pointer to previous token context, NULL if no context struct _seg_token *list; ///< Link to next token, NULL if last} SEGTOKEN;/* mkwhmm.c */HMM *new_make_word_hmm(HTK_HMM_INFO *, HMM_Logical **, int#ifdef MULTIPATH_VERSION , boolean *#endif );HMM *new_make_word_hmm_with_lm(HTK_HMM_INFO *, HMM_Logical **, int#ifdef MULTIPATH_VERSION , boolean *#endif , LOGPROB *);void free_hmm(HMM *);/* vsegment.c */LOGPROB viterbi_segment(HMM *hmm, HTK_Param *param, int *endstates, int ulen, int **id_ret, int **seg_ret, LOGPROB **uscore_ret, int *retlen);/* addlog.c */void make_log_tbl();LOGPROB addlog(LOGPROB x, LOGPROB y);LOGPROB addlog_array(LOGPROB *x, int n);/* outprob_init.c */booleanoutprob_init(HTK_HMM_INFO *hmminfo, HTK_HMM_INFO *gshmm, int gms_num, int gprune_method, int gprune_mixnum );boolean outprob_prepare(int framenum);void outprob_free();/* outprob.c */boolean outprob_cache_init();boolean outprob_cache_prepare();void outprob_cache_free();LOGPROB outprob_state(int t, HTK_HMM_State *stateinfo, HTK_Param *param);void outprob_cd_nbest_init(int num);void outprob_cd_nbest_free();LOGPROB outprob_cd(int t, CD_State_Set *lset, HTK_Param *param);LOGPROB outprob(int t, HMM_STATE *hmmstate, HTK_Param *param);/* gms.c */boolean gms_init(int nbest);boolean gms_prepare(int framelen);void gms_free();LOGPROB gms_state();/* gms_gprune.c */void gms_gprune_init(HTK_HMM_INFO *hmminfo, int gsset_num);void gms_gprune_prepare();void gms_gprune_free();void compute_gs_scores(GS_SET *gsset, int gsset_num, LOGPROB *scores_ret);/* calc_mix.c */LOGPROB calc_mix();/* calc_tied_mix.c */boolean calc_tied_mix_init();boolean calc_tied_mix_prepare(int framenum);void calc_tied_mix_free();LOGPROB calc_tied_mix();/* hmminfo/put_htkdata_info */void put_hmm_arc(HMM *d);void put_hmm_outprob(HMM *d);void put_hmm(HMM *d);#endif /* __SENT_HMM_NEW2_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -