Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
Variables | |
| const fx_module_doc | mog_em_main_doc |
| const fx_entry_doc | mog_em_main_entries [] |
| const fx_submodule_doc | mog_em_main_submodules [] |
This program test drives the parametric estimation of a Gaussian Mixture model using maximum likelihood.
PARAMETERS TO BE INPUT:
--data This is the file that contains the data on which the model is to be fit
--mog_em/K This is the number of gaussians we want to fit on the data, defaults to '1'
--output This file will contain the parameters estimated, defaults to 'ouotput.csv'
Definition in file mog_em_main.cc.
| const fx_module_doc mog_em_main_doc |
{
mog_em_main_entries, mog_em_main_submodules,
" This program test drives the parametric estimation "
"of a Gaussian mixture model using maximum likelihood.\n"
}
Definition at line 73 of file mog_em_main.cc.
| const fx_entry_doc mog_em_main_entries[] |
{
{"data", FX_REQUIRED, FX_STR, NULL,
" A file containing the data on which the model"
" has to be fit.\n"},
{"output", FX_PARAM, FX_STR, NULL,
" The file into which the output is to be written into.\n"},
FX_ENTRY_DOC_DONE
}
Definition at line 57 of file mog_em_main.cc.
| const fx_submodule_doc mog_em_main_submodules[] |
{
{"mog_em", &mog_em_doc,
" Responsible for intializing the model and"
" computing the parameters.\n"},
FX_SUBMODULE_DOC_DONE
}
Definition at line 66 of file mog_em_main.cc.
1.6.3