Blame view
src/chainbin/nnet3-chain-combine.cc
8.53 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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
// chainbin/nnet3-chain-combine.cc // Copyright 2012-2015 Johns Hopkins University (author: Daniel Povey) // 2017 Yiming Wang // 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. #include "base/kaldi-common.h" #include "util/common-utils.h" #include "nnet3/nnet-utils.h" #include "nnet3/nnet-compute.h" #include "nnet3/nnet-chain-diagnostics.h" namespace kaldi { namespace nnet3 { // Computes and returns the objective function for the examples in 'egs' given // the model in 'nnet'. If either of batchnorm/dropout test modes is true, we // make a copy of 'nnet', set test modes on that and evaluate its objective. // Note: the object that prob_computer->nnet_ refers to should be 'nnet'. double ComputeObjf(bool batchnorm_test_mode, bool dropout_test_mode, const std::vector<NnetChainExample> &egs, const Nnet &nnet, const chain::ChainTrainingOptions &chain_config, const fst::StdVectorFst &den_fst, NnetChainComputeProb *prob_computer) { if (batchnorm_test_mode || dropout_test_mode) { Nnet nnet_copy(nnet); if (batchnorm_test_mode) SetBatchnormTestMode(true, &nnet_copy); if (dropout_test_mode) SetDropoutTestMode(true, &nnet_copy); NnetComputeProbOptions compute_prob_opts; NnetChainComputeProb prob_computer_test(compute_prob_opts, chain_config, den_fst, nnet_copy); return ComputeObjf(false, false, egs, nnet_copy, chain_config, den_fst, &prob_computer_test); } else { prob_computer->Reset(); std::vector<NnetChainExample>::const_iterator iter = egs.begin(), end = egs.end(); for (; iter != end; ++iter) prob_computer->Compute(*iter); double tot_weight = 0.0; double tot_objf = prob_computer->GetTotalObjective(&tot_weight); KALDI_ASSERT(tot_weight > 0.0); // inf/nan tot_objf->return -inf objective. if (!(tot_objf == tot_objf && tot_objf - tot_objf == 0)) return -std::numeric_limits<double>::infinity(); // we prefer to deal with normalized objective functions. return tot_objf / tot_weight; } } // Updates moving average over num_models nnets, given the average over // previous (num_models - 1) nnets, and the new nnet. void UpdateNnetMovingAverage(int32 num_models, const Nnet &nnet, Nnet *moving_average_nnet) { KALDI_ASSERT(NumParameters(nnet) == NumParameters(*moving_average_nnet)); ScaleNnet((num_models - 1.0) / num_models, moving_average_nnet); AddNnet(nnet, 1.0 / num_models, moving_average_nnet); } } } int main(int argc, char *argv[]) { try { using namespace kaldi; using namespace kaldi::nnet3; typedef kaldi::int32 int32; typedef kaldi::int64 int64; const char *usage = "Using a subset of training or held-out nnet3+chain examples, compute " "the average over the first n nnet models where we maximize the " "'chain' objective function for n. Note that the order of models has " "been reversed before feeding into this binary. So we are actually " "combining last n models. " "Inputs and outputs are nnet3 raw nnets. " " " "Usage: nnet3-chain-combine [options] <den-fst> <raw-nnet-in1> <raw-nnet-in2> ... <raw-nnet-inN> <chain-examples-in> <raw-nnet-out> " " " "e.g.: " " nnet3-combine den.fst 35.raw 36.raw 37.raw 38.raw ark:valid.cegs final.raw "; bool binary_write = true; int32 max_objective_evaluations = 30; bool batchnorm_test_mode = false, dropout_test_mode = true; std::string use_gpu = "yes"; chain::ChainTrainingOptions chain_config; ParseOptions po(usage); po.Register("binary", &binary_write, "Write output in binary mode"); po.Register("max-objective-evaluations", &max_objective_evaluations, "The " "maximum number of objective evaluations in order to figure " "out the best number of models to combine. It helps to speedup " "if the number of models provided to this binary is quite " "large (e.g. several hundred)."); po.Register("use-gpu", &use_gpu, "yes|no|optional|wait, only has effect if compiled with CUDA"); po.Register("batchnorm-test-mode", &batchnorm_test_mode, "If true, set test-mode to true on any BatchNormComponents " "while evaluating objectives."); po.Register("dropout-test-mode", &dropout_test_mode, "If true, set test-mode to true on any DropoutComponents and " "DropoutMaskComponents while evaluating objectives."); chain_config.Register(&po); po.Read(argc, argv); if (po.NumArgs() < 4) { po.PrintUsage(); exit(1); } #if HAVE_CUDA==1 CuDevice::Instantiate().SelectGpuId(use_gpu); #endif std::string den_fst_rxfilename = po.GetArg(1), raw_nnet_rxfilename = po.GetArg(2), valid_examples_rspecifier = po.GetArg(po.NumArgs() - 1), nnet_wxfilename = po.GetArg(po.NumArgs()); fst::StdVectorFst den_fst; ReadFstKaldi(den_fst_rxfilename, &den_fst); Nnet nnet; ReadKaldiObject(raw_nnet_rxfilename, &nnet); Nnet moving_average_nnet(nnet), best_nnet(nnet); NnetComputeProbOptions compute_prob_opts; NnetChainComputeProb prob_computer(compute_prob_opts, chain_config, den_fst, moving_average_nnet); std::vector<NnetChainExample> egs; egs.reserve(10000); // reserve a lot of space to minimize the chance of // reallocation. { // This block adds training examples to "egs". SequentialNnetChainExampleReader example_reader( valid_examples_rspecifier); for (; !example_reader.Done(); example_reader.Next()) egs.push_back(example_reader.Value()); KALDI_LOG << "Read " << egs.size() << " examples."; KALDI_ASSERT(!egs.empty()); } // first evaluates the objective using the last model. int32 best_num_to_combine = 1; double init_objf = ComputeObjf(batchnorm_test_mode, dropout_test_mode, egs, moving_average_nnet, chain_config, den_fst, &prob_computer), best_objf = init_objf; KALDI_LOG << "objective function using the last model is " << init_objf; int32 num_nnets = po.NumArgs() - 3; // then each time before we re-evaluate the objective function, we will add // num_to_add models to the moving average. int32 num_to_add = (num_nnets + max_objective_evaluations - 1) / max_objective_evaluations; for (int32 n = 1; n < num_nnets; n++) { std::string this_nnet_rxfilename = po.GetArg(n + 2); ReadKaldiObject(this_nnet_rxfilename, &nnet); // updates the moving average UpdateNnetMovingAverage(n + 1, nnet, &moving_average_nnet); // evaluates the objective everytime after adding num_to_add model or // all the models to the moving average. if ((n - 1) % num_to_add == num_to_add - 1 || n == num_nnets - 1) { double objf = ComputeObjf(batchnorm_test_mode, dropout_test_mode, egs, moving_average_nnet, chain_config, den_fst, &prob_computer); KALDI_LOG << "Combining last " << n + 1 << " models, objective function is " << objf; if (objf > best_objf) { best_objf = objf; best_nnet = moving_average_nnet; best_num_to_combine = n + 1; } } } KALDI_LOG << "Combining " << best_num_to_combine << " nnets, objective function changed from " << init_objf << " to " << best_objf; if (HasBatchnorm(nnet)) RecomputeStats(egs, chain_config, den_fst, &best_nnet); #if HAVE_CUDA==1 CuDevice::Instantiate().PrintProfile(); #endif WriteKaldiObject(best_nnet, nnet_wxfilename, binary_write); KALDI_LOG << "Finished combining neural nets, wrote model to " << nnet_wxfilename; } catch(const std::exception &e) { std::cerr << e.what() << ' '; return -1; } } |