Blame view
src/bin/compile-train-graphs.cc
5.59 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 |
// bin/compile-train-graphs.cc // Copyright 2009-2012 Microsoft Corporation // 2012-2015 Johns Hopkins University (Author: Daniel Povey) // 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 "tree/context-dep.h" #include "hmm/transition-model.h" #include "fstext/fstext-lib.h" #include "decoder/training-graph-compiler.h" int main(int argc, char *argv[]) { try { using namespace kaldi; typedef kaldi::int32 int32; using fst::SymbolTable; using fst::VectorFst; using fst::StdArc; const char *usage = "Creates training graphs (without transition-probabilities, by default) " " " "Usage: compile-train-graphs [options] <tree-in> <model-in> " "<lexicon-fst-in> <transcriptions-rspecifier> <graphs-wspecifier> " "e.g.: " " compile-train-graphs tree 1.mdl lex.fst " "'ark:sym2int.pl -f 2- words.txt text|' ark:graphs.fsts "; ParseOptions po(usage); TrainingGraphCompilerOptions gopts; int32 batch_size = 250; gopts.transition_scale = 0.0; // Change the default to 0.0 since we will generally add the // transition probs in the alignment phase (since they change eacm time) gopts.self_loop_scale = 0.0; // Ditto for self-loop probs. std::string disambig_rxfilename; gopts.Register(&po); po.Register("batch-size", &batch_size, "Number of FSTs to compile at a time (more -> faster but uses " "more memory. E.g. 500"); po.Register("read-disambig-syms", &disambig_rxfilename, "File containing " "list of disambiguation symbols in phone symbol table"); po.Read(argc, argv); if (po.NumArgs() != 5) { po.PrintUsage(); exit(1); } std::string tree_rxfilename = po.GetArg(1); std::string model_rxfilename = po.GetArg(2); std::string lex_rxfilename = po.GetArg(3); std::string transcript_rspecifier = po.GetArg(4); std::string fsts_wspecifier = po.GetArg(5); ContextDependency ctx_dep; // the tree. ReadKaldiObject(tree_rxfilename, &ctx_dep); TransitionModel trans_model; ReadKaldiObject(model_rxfilename, &trans_model); // need VectorFst because we will change it by adding subseq symbol. VectorFst<StdArc> *lex_fst = fst::ReadFstKaldi(lex_rxfilename); std::vector<int32> disambig_syms; if (disambig_rxfilename != "") if (!ReadIntegerVectorSimple(disambig_rxfilename, &disambig_syms)) KALDI_ERR << "fstcomposecontext: Could not read disambiguation symbols from " << disambig_rxfilename; TrainingGraphCompiler gc(trans_model, ctx_dep, lex_fst, disambig_syms, gopts); lex_fst = NULL; // we gave ownership to gc. SequentialInt32VectorReader transcript_reader(transcript_rspecifier); TableWriter<fst::VectorFstHolder> fst_writer(fsts_wspecifier); int num_succeed = 0, num_fail = 0; if (batch_size == 1) { // We treat batch_size of 1 as a special case in order // to test more parts of the code. for (; !transcript_reader.Done(); transcript_reader.Next()) { std::string key = transcript_reader.Key(); const std::vector<int32> &transcript = transcript_reader.Value(); VectorFst<StdArc> decode_fst; if (!gc.CompileGraphFromText(transcript, &decode_fst)) { decode_fst.DeleteStates(); // Just make it empty. } if (decode_fst.Start() != fst::kNoStateId) { num_succeed++; fst_writer.Write(key, decode_fst); } else { KALDI_WARN << "Empty decoding graph for utterance " << key; num_fail++; } } } else { std::vector<std::string> keys; std::vector<std::vector<int32> > transcripts; while (!transcript_reader.Done()) { keys.clear(); transcripts.clear(); for (; !transcript_reader.Done() && static_cast<int32>(transcripts.size()) < batch_size; transcript_reader.Next()) { keys.push_back(transcript_reader.Key()); transcripts.push_back(transcript_reader.Value()); } std::vector<fst::VectorFst<fst::StdArc>* > fsts; if (!gc.CompileGraphsFromText(transcripts, &fsts)) { KALDI_ERR << "Not expecting CompileGraphs to fail."; } KALDI_ASSERT(fsts.size() == keys.size()); for (size_t i = 0; i < fsts.size(); i++) { if (fsts[i]->Start() != fst::kNoStateId) { num_succeed++; fst_writer.Write(keys[i], *(fsts[i])); } else { KALDI_WARN << "Empty decoding graph for utterance " << keys[i]; num_fail++; } } DeletePointers(&fsts); } } KALDI_LOG << "compile-train-graphs: succeeded for " << num_succeed << " graphs, failed for " << num_fail; return (num_succeed != 0 ? 0 : 1); } catch(const std::exception &e) { std::cerr << e.what(); return -1; } } |