49 #include <sphinxbase/fixpoint.h> 50 #include <sphinxbase/listelem_alloc.h> 73 #define MAX_N_FRAMES MAX_INT32 77 #define SENSCR_SHIFT 10 88 #define WORST_SCORE ((int)0xE0000000) 94 #define TMAT_WORST_SCORE (-255) 164 #define HMM_MAX_NSTATE 5 190 #define hmm_context(h) (h)->ctx 191 #define hmm_is_mpx(h) (h)->mpx 193 #define hmm_in_score(h) (h)->score[0] 194 #define hmm_score(h,st) (h)->score[st] 195 #define hmm_out_score(h) (h)->out_score 197 #define hmm_in_history(h) (h)->history[0] 198 #define hmm_history(h,st) (h)->history[st] 199 #define hmm_out_history(h) (h)->out_history 201 #define hmm_bestscore(h) (h)->bestscore 202 #define hmm_frame(h) (h)->frame 203 #define hmm_mpx_ssid(h,st) (h)->senid[st] 204 #define hmm_nonmpx_ssid(h) (h)->ssid 205 #define hmm_ssid(h,st) (hmm_is_mpx(h) \ 206 ? hmm_mpx_ssid(h,st) : hmm_nonmpx_ssid(h)) 207 #define hmm_mpx_senid(h,st) (hmm_mpx_ssid(h,st) == BAD_SENID \ 208 ? BAD_SENID : (h)->ctx->sseq[hmm_mpx_ssid(h,st)][st]) 209 #define hmm_nonmpx_senid(h,st) ((h)->senid[st]) 210 #define hmm_senid(h,st) (hmm_is_mpx(h) \ 211 ? hmm_mpx_senid(h,st) : hmm_nonmpx_senid(h,st)) 212 #define hmm_senscr(h,st) (hmm_senid(h,st) == BAD_SENID \ 214 : -(h)->ctx->senscore[hmm_senid(h,st)]) 215 #define hmm_tmatid(h) (h)->tmatid 216 #define hmm_tprob(h,i,j) (-(h)->ctx->tp[hmm_tmatid(h)][i][j]) 217 #define hmm_n_emit_state(h) ((h)->n_emit_state) 218 #define hmm_n_state(h) ((h)->n_emit_state + 1) 226 uint16 *
const *
sseq);
231 #define hmm_context_set_senscore(ctx, senscr) ((ctx)->senscore = (senscr)) 273 int32 histid,
int frame);
int32 hmm_dump_vit_eval(hmm_t *hmm, FILE *fp)
Like hmm_vit_eval, but dump HMM state and relevant senscr to fp first, for debugging;.
void * udata
Whatever you feel like, gosh.
void hmm_init(hmm_context_t *ctx, hmm_t *hmm, int mpx, int ssid, int tmatid)
Populate a previously-allocated HMM structure, allocating internal data.
An individual HMM among the HMM search space.
int32 * st_sen_scr
Temporary array of senone scores (for some topologies).
listelem_alloc_t * mpx_ssid_alloc
Allocator for senone sequence ID arrays.
void hmm_deinit(hmm_t *hmm)
Free an HMM structure, releasing internal data (but not the HMM structure itself).
Binary format model definition files, with support for heterogeneous topologies and variable-size N-p...
int32 out_score
Score for non-emitting exit state.
uint8 mpx
Is this HMM multiplex? (hoisted for speed)
#define HMM_MAX_NSTATE
Hard-coded limit on the number of emitting states.
uint16 *const * sseq
Senone sequence mapping.
int32 hmm_vit_eval(hmm_t *hmm)
Viterbi evaluation of given HMM.
void hmm_normalize(hmm_t *h, int32 bestscr)
Renormalize the scores in this HMM based on the given best score.
hmm_context_t * hmm_context_init(int32 n_emit_state, uint8 **const *tp, int16 const *senscore, uint16 *const *sseq)
Create an HMM context.
uint16 ssid
Senone sequence ID (for non-MPX)
int32 bestscore
Best [emitting] state score in current frame (for pruning).
Shared information between a set of HMMs.
int32 out_history
History index for non-emitting exit state.
void hmm_enter(hmm_t *h, int32 score, int32 histid, int frame)
Enter an HMM with the given path score and history ID.
void hmm_dump(hmm_t *h, FILE *fp)
For debugging, dump the whole HMM out.
void hmm_clear(hmm_t *h)
Reset the states of the HMM to the invalid condition.
int16 tmatid
Transition matrix ID (see hmm_context_t).
hmm_context_t * ctx
Shared context data for this HMM.
int32 frame_idx_t
Type for frame index values.
void hmm_clear_scores(hmm_t *h)
Reset the scores of the HMM.
void hmm_context_free(hmm_context_t *ctx)
Free an HMM context.
uint8 n_emit_state
Number of emitting states (hoisted for speed)
int16 const * senscore
State emission scores senscore[senid] (negated scaled logs3 values).
uint8 **const * tp
State transition scores tp[id][from][to] (logs3 values).
int32 n_emit_state
Number of emitting states in this set of HMMs.
frame_idx_t frame
Frame in which this HMM was last active; <0 if inactive.