Mercurial > hg > aimc
comparison src/Modules/Features/ModuleGaussians.h @ 84:bee31e7ebf4b
- Added as-yet-unfinished support for a proper configuraiton file format
- Added a couple of pythin scripts to generate HMM configuration files
- Variable name changes and other cosmetic things
- Added the option for the noise generation to do pink noise (untested)
author | tomwalters |
---|---|
date | Thu, 12 Aug 2010 11:28:11 +0000 |
parents | c5f5e9569863 |
children |
comparison
equal
deleted
inserted
replaced
83:9c3cac29f300 | 84:bee31e7ebf4b |
---|---|
73 */ | 73 */ |
74 int m_iParamMaxIt; | 74 int m_iParamMaxIt; |
75 | 75 |
76 /*! \brief convergence criterion | 76 /*! \brief convergence criterion |
77 */ | 77 */ |
78 float m_fParamPriorsConverged; | 78 float priors_converged_; |
79 | |
80 /*! \brief Output component positions as well as amplitudes | |
81 */ | |
82 bool output_positions_; | |
83 | |
84 /*! \brief Total number of values in the output | |
85 */ | |
86 int output_component_count_; | |
79 | 87 |
80 /*! \brief The amplitudes of the components (priors) | 88 /*! \brief The amplitudes of the components (priors) |
81 */ | 89 */ |
82 vector<float> m_pA; | 90 vector<float> m_pA; |
83 | 91 |