Blame view
src/bin/build-tree.cc
6.95 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 |
// bin/build-tree.cc // Copyright 2009-2011 Microsoft Corporation // 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 "hmm/hmm-topology.h" #include "tree/context-dep.h" #include "tree/build-tree.h" #include "tree/build-tree-utils.h" #include "tree/clusterable-classes.h" #include "util/text-utils.h" int main(int argc, char *argv[]) { using namespace kaldi; try { using namespace kaldi; typedef kaldi::int32 int32; const char *usage = "Train decision tree " "Usage: build-tree [options] <tree-stats-in> <roots-file> <questions-file> <topo-file> <tree-out> " "e.g.: " " build-tree treeacc roots.txt 1.qst topo tree "; bool binary = true; int32 P = 1, N = 3; BaseFloat thresh = 300.0; BaseFloat cluster_thresh = -1.0; // negative means use smallest split in splitting phase as thresh. int32 max_leaves = 0; bool round_num_leaves = true; std::string occs_out_filename; ParseOptions po(usage); po.Register("binary", &binary, "Write output in binary mode"); po.Register("context-width", &N, "Context window size [must match " "acc-tree-stats]"); po.Register("central-position", &P, "Central position in context window " "[must match acc-tree-stats]"); po.Register("max-leaves", &max_leaves, "Maximum number of leaves to be " "used in tree-buliding (if positive)"); po.Register("thresh", &thresh, "Log-likelihood change threshold for " "tree-building"); po.Register("cluster-thresh", &cluster_thresh, "Log-likelihood change " "threshold for clustering after tree-building. 0 means " "no clustering; -1 means use as a clustering threshold the " "likelihood change of the final split."); po.Register("round-num-leaves", &round_num_leaves, "If true, then the number of leaves will be reduced to a " "multiple of 8 by clustering."); po.Read(argc, argv); if (po.NumArgs() != 5) { po.PrintUsage(); exit(1); } std::string stats_filename = po.GetArg(1), roots_filename = po.GetArg(2), questions_filename = po.GetArg(3), topo_filename = po.GetArg(4), tree_out_filename = po.GetArg(5); // Following 2 variables derived from roots file. // phone_sets is sets of phones that share their roots. // Just one phone each for normal systems. std::vector<std::vector<int32> > phone_sets; std::vector<bool> is_shared_root; std::vector<bool> is_split_root; { Input ki(roots_filename.c_str()); ReadRootsFile(ki.Stream(), &phone_sets, &is_shared_root, &is_split_root); } HmmTopology topo; ReadKaldiObject(topo_filename, &topo); BuildTreeStatsType stats; { bool binary_in; GaussClusterable gc; // dummy needed to provide type. Input ki(stats_filename, &binary_in); ReadBuildTreeStats(ki.Stream(), binary_in, gc, &stats); } KALDI_LOG << "Number of separate statistics is " << stats.size(); Questions qo; { bool binary_in; try { Input ki(questions_filename, &binary_in); qo.Read(ki.Stream(), binary_in); } catch (const std::exception &e) { KALDI_ERR << "Error reading questions file "<<questions_filename<<", error is: " << e.what(); } } std::vector<int32> phone2num_pdf_classes; topo.GetPhoneToNumPdfClasses(&phone2num_pdf_classes); EventMap *to_pdf = NULL; //////// Build the tree. //////////// to_pdf = BuildTree(qo, phone_sets, phone2num_pdf_classes, is_shared_root, is_split_root, stats, thresh, max_leaves, cluster_thresh, P, round_num_leaves); { // This block is to warn about low counts. std::vector<BuildTreeStatsType> split_stats; SplitStatsByMap(stats, *to_pdf, &split_stats); for (size_t i = 0; i < split_stats.size(); i++) if (SumNormalizer(split_stats[i]) < 100.0) KALDI_VLOG(1) << "For pdf-id " << i << ", low count " << SumNormalizer(split_stats[i]); } ContextDependency ctx_dep(N, P, to_pdf); // takes ownership // of pointer "to_pdf", so set it NULL. to_pdf = NULL; WriteKaldiObject(ctx_dep, tree_out_filename, binary); { // This block is just doing some checks. std::vector<int32> all_phones; for (size_t i = 0; i < phone_sets.size(); i++) all_phones.insert(all_phones.end(), phone_sets[i].begin(), phone_sets[i].end()); SortAndUniq(&all_phones); if (all_phones != topo.GetPhones()) { std::ostringstream ss; WriteIntegerVector(ss, false, all_phones); ss << " vs. "; WriteIntegerVector(ss, false, topo.GetPhones()); KALDI_WARN << "Mismatch between phone sets provided in roots file, and those in topology: " << ss.str(); } std::vector<int32> phones_vec; // phones we saw. PossibleValues(P, stats, &phones_vec); // function in build-tree-utils.h std::vector<int32> unseen_phones; // diagnostic. for (size_t i = 0; i < all_phones.size(); i++) if (!std::binary_search(phones_vec.begin(), phones_vec.end(), all_phones[i])) unseen_phones.push_back(all_phones[i]); for (size_t i = 0; i < phones_vec.size(); i++) if (!std::binary_search(all_phones.begin(), all_phones.end(), phones_vec[i])) KALDI_ERR << "Phone " << (phones_vec[i]) << " appears in stats but is not listed in roots file."; if (!unseen_phones.empty()) { std::ostringstream ss; for (size_t i = 0; i < unseen_phones.size(); i++) ss << unseen_phones[i] << ' '; // Note, unseen phones is just a warning as in certain kinds of // systems, this can be OK (e.g. where phone encodes position and // stress information). KALDI_WARN << "Saw no stats for following phones: " << ss.str(); } } KALDI_LOG << "Wrote tree"; DeleteBuildTreeStats(&stats); } catch(const std::exception &e) { std::cerr << e.what(); return -1; } } |