#include <julius.h>
Include dependency graph for m_fusion.c:
Go to the source code of this file.
Functions | |
static void | initialize_HMM () |
static void | initialize_GSHMM () |
static void | initialize_GMM () |
static void | initialize_dict () |
static void | configure_param () |
Set model-dependent default values. | |
void | select_result_output () |
void | final_fusion () |
Read in all models and prepare data for recognition. |
Definition in file m_fusion.c.
|
Read in an acoustic HMM from file and setup for recognition. Definition at line 35 of file m_fusion.c. Referenced by final_fusion(). |
|
Initialize context-independent HMM for state selection with Gaussian Mixture Selection. Definition at line 120 of file m_fusion.c. Referenced by final_fusion(). |
|
Read and initialize an 1-state GMM for utterance verification and rejection. Definition at line 140 of file m_fusion.c. Referenced by final_fusion(). |
|
Read in word dictionary from a file and setup for recognition. Definition at line 161 of file m_fusion.c. Referenced by final_fusion(). |
|
Set model-dependent default values. The default values of parameters which depends on the using models, such as language weights, insertion penalty, gaussian pruning methods and so on, are determined at this function. If values are explicitly defined in jconf file or command argument at run time, they will be used instead. Definition at line 264 of file m_fusion.c. Referenced by final_fusion(). |
|
Setup functions to output recognition results and logs. Definition at line 303 of file m_fusion.c. Referenced by final_fusion(). |
|
Read in all models and prepare data for recognition. This function reads in all the models needed for recognition, inspects the models and their relations, builds a tree lexicon, and allocate cache. Some default parameters will also be set here. Definition at line 338 of file m_fusion.c. Referenced by main_recognition_loop(). |