Blame view
src/gmm/ebw-diag-gmm.h
5.43 KB
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
// gmm/ebw-diag-gmm.h // Copyright 2009-2011 Arnab Ghoshal, Petr Motlicek // See ../../COPYING for clarification regarding multiple authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. // See the Apache 2 License for the specific language governing permissions and // limitations under the License. #ifndef KALDI_GMM_EBW_DIAG_GMM_H_ #define KALDI_GMM_EBW_DIAG_GMM_H_ 1 #include "gmm/diag-gmm.h" #include "gmm/diag-gmm-normal.h" #include "gmm/mle-diag-gmm.h" #include "gmm/mle-am-diag-gmm.h" #include "gmm/model-common.h" #include "itf/options-itf.h" namespace kaldi { // Options for Extended Baum-Welch Gaussian update. struct EbwOptions { BaseFloat E; BaseFloat tau; // This is only useful for smoothing "to the model": // if you want to smooth to ML stats, you need to use gmm-ismooth-stats EbwOptions(): E(2.0), tau(0.0) { } void Register(OptionsItf *opts) { std::string module = "EbwOptions: "; opts->Register("E", &E, module+"Constant E for Extended Baum-Welch (EBW) update"); opts->Register("tau", &tau, module+"Tau value for smoothing to the model " "parameters only (for smoothing to ML stats, use gmm-ismooth-stats"); } }; struct EbwWeightOptions { BaseFloat min_num_count_weight_update; // minimum numerator count at state level, before we update. BaseFloat min_gaussian_weight; BaseFloat tau; // tau value for smoothing stats in weight update. Should probably // be 10.0 or so, leaving it at 0 for back-compatibility. EbwWeightOptions(): min_num_count_weight_update(10.0), min_gaussian_weight(1.0e-05), tau(0.0) { } void Register(OptionsItf *opts) { std::string module = "EbwWeightOptions: "; opts->Register("min-num-count-weight-update", &min_num_count_weight_update, module+"Minimum numerator count required at " "state level before we update the weights (only active if tau == 0.0)"); opts->Register("min-gaussian-weight", &min_gaussian_weight, module+"Minimum Gaussian weight allowed in EBW update of weights"); opts->Register("weight-tau", &tau, module+"Tau value for smoothing Gaussian weight update."); } }; // Update Gaussian parameters only (no weights) // The pointer parameters auxf_change_out etc. are incremented, not set. void UpdateEbwDiagGmm(const AccumDiagGmm &num_stats, // with I-smoothing, if used. const AccumDiagGmm &den_stats, GmmFlagsType flags, const EbwOptions &opts, DiagGmm *gmm, BaseFloat *auxf_change_out, BaseFloat *count_out, int32 *num_floored_out); void UpdateEbwAmDiagGmm(const AccumAmDiagGmm &num_stats, // with I-smoothing, if used. const AccumAmDiagGmm &den_stats, GmmFlagsType flags, const EbwOptions &opts, AmDiagGmm *am_gmm, BaseFloat *auxf_change_out, BaseFloat *count_out, int32 *num_floored_out); // Updates the weights using the EBW-like method described in Dan Povey's thesis // (this method has no tunable parameters). // The pointer parameters auxf_change_out etc. are incremented, not set. void UpdateEbwWeightsDiagGmm(const AccumDiagGmm &num_stats, // should have no I-smoothing const AccumDiagGmm &den_stats, const EbwWeightOptions &opts, DiagGmm *gmm, BaseFloat *auxf_change_out, BaseFloat *count_out); void UpdateEbwWeightsAmDiagGmm(const AccumAmDiagGmm &num_stats, // should have no I-smoothing const AccumAmDiagGmm &den_stats, const EbwWeightOptions &opts, AmDiagGmm *am_gmm, BaseFloat *auxf_change_out, BaseFloat *count_out); /// I-Smooth the stats. src_stats and dst_stats do not have to be different. void IsmoothStatsDiagGmm(const AccumDiagGmm &src_stats, double tau, AccumDiagGmm *dst_stats); /// Creates stats from the GMM. Resizes them as needed. void DiagGmmToStats(const DiagGmm &gmm, GmmFlagsType flags, double state_occ, AccumDiagGmm *dst_stats); /// Smooth "dst_stats" with "src_stats". They don't have to be /// different. void IsmoothStatsAmDiagGmm(const AccumAmDiagGmm &src_stats, double tau, AccumAmDiagGmm *dst_stats); /// This version of the I-smoothing function takes a model as input. void IsmoothStatsAmDiagGmmFromModel(const AmDiagGmm &src_model, double tau, AccumAmDiagGmm *dst_stats); } // End namespace kaldi #endif // KALDI_GMM_EBW_DIAG_GMM_H_ |