Blame view
src/fstbin/fsttablecompose.cc
7.38 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 |
// fstbin/fsttablecompose.cc // Copyright 2009-2011 Microsoft Corporation // 2013 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 "fst/fstlib.h" #include "fstext/table-matcher.h" #include "fstext/fstext-utils.h" #include "fstext/kaldi-fst-io.h" /* cd ~/tmpdir while true; do fstrand | fstarcsort --sort_type=olabel > 1.fst; fstrand | fstarcsort > 2.fst fstcompose 1.fst 2.fst > 3a.fst fsttablecompose 1.fst 2.fst > 3b.fst fstequivalent --random=true 3a.fst 3b.fst || echo "Test failed" echo -n "." done */ int main(int argc, char *argv[]) { try { using namespace kaldi; using namespace fst; using kaldi::int32; /* fsttablecompose should always give equivalent results to compose, but it is more efficient for certain kinds of inputs. In particular, it is useful when, say, the left FST has states that typically either have epsilon olabels, or one transition out for each of the possible symbols (as the olabel). The same with the input symbols of the right-hand FST is possible. */ const char *usage = "Composition algorithm [between two FSTs of standard type, in tropical " "semiring] that is more efficient for certain cases-- in particular, " "where one of the FSTs (the left one, if --match-side=left) has large " "out-degree " " " "Usage: fsttablecompose (fst1-rxfilename|fst1-rspecifier) " "(fst2-rxfilename|fst2-rspecifier) [(out-rxfilename|out-rspecifier)] "; ParseOptions po(usage); TableComposeOptions opts; std::string match_side = "left"; std::string compose_filter = "sequence"; po.Register("connect", &opts.connect, "If true, trim FST before output."); po.Register("match-side", &match_side, "Side of composition to do table " "match, one of: \"left\" or \"right\"."); po.Register("compose-filter", &compose_filter, "Composition filter to use, " "one of: \"alt_sequence\", \"auto\", \"match\", \"sequence\""); po.Read(argc, argv); if (match_side == "left") { opts.table_match_type = MATCH_OUTPUT; } else if (match_side == "right") { opts.table_match_type = MATCH_INPUT; } else { KALDI_ERR << "Invalid match-side option: " << match_side; } if (compose_filter == "alt_sequence") { opts.filter_type = ALT_SEQUENCE_FILTER; } else if (compose_filter == "auto") { opts.filter_type = AUTO_FILTER; } else if (compose_filter == "match") { opts.filter_type = MATCH_FILTER; } else if (compose_filter == "sequence") { opts.filter_type = SEQUENCE_FILTER; } else { KALDI_ERR << "Invalid compose-filter option: " << compose_filter; } if (po.NumArgs() < 2 || po.NumArgs() > 3) { po.PrintUsage(); exit(1); } std::string fst1_in_str = po.GetArg(1), fst2_in_str = po.GetArg(2), fst_out_str = po.GetOptArg(3); // Note: the "table" in is_table_1 and similar variables has nothing // to do with the "table" in "fsttablecompose"; is_table_1 relates to // whether we are dealing with a single FST or a whole set of FSTs. bool is_table_1 = (ClassifyRspecifier(fst1_in_str, NULL, NULL) != kNoRspecifier), is_table_2 = (ClassifyRspecifier(fst2_in_str, NULL, NULL) != kNoRspecifier), is_table_out = (ClassifyWspecifier(fst_out_str, NULL, NULL, NULL) != kNoWspecifier); if (is_table_out != (is_table_1 || is_table_2)) KALDI_ERR << "Incompatible combination of archives and files"; if (!is_table_1 && !is_table_2) { // Only dealing with files... VectorFst<StdArc> *fst1 = ReadFstKaldi(fst1_in_str); VectorFst<StdArc> *fst2 = ReadFstKaldi(fst2_in_str); // Checks if <fst1> is olabel sorted and <fst2> is ilabel sorted. if (fst1->Properties(fst::kOLabelSorted, true) == 0) { KALDI_WARN << "The first FST is not olabel sorted."; } if (fst2->Properties(fst::kILabelSorted, true) == 0) { KALDI_WARN << "The second FST is not ilabel sorted."; } VectorFst<StdArc> composed_fst; TableCompose(*fst1, *fst2, &composed_fst, opts); delete fst1; delete fst2; WriteFstKaldi(composed_fst, fst_out_str); return 0; } else if (!is_table_1 && is_table_2 && opts.table_match_type == MATCH_OUTPUT) { // second arg is an archive, and match-side=left (default). TableComposeCache<Fst<StdArc> > cache(opts); VectorFst<StdArc> *fst1 = ReadFstKaldi(fst1_in_str); SequentialTableReader<VectorFstHolder> fst2_reader(fst2_in_str); TableWriter<VectorFstHolder> fst_writer(fst_out_str); int32 n_done = 0; // Checks if <fst1> is olabel sorted. if (fst1->Properties(fst::kOLabelSorted, true) == 0) { KALDI_WARN << "The first FST is not olabel sorted."; } for (; !fst2_reader.Done(); fst2_reader.Next(), n_done++) { VectorFst<StdArc> fst2(fst2_reader.Value()); VectorFst<StdArc> fst_out; TableCompose(*fst1, fst2, &fst_out, &cache); fst_writer.Write(fst2_reader.Key(), fst_out); } KALDI_LOG << "Composed " << n_done << " FSTs."; return (n_done != 0 ? 0 : 1); } else if (is_table_1 && is_table_2) { SequentialTableReader<VectorFstHolder> fst1_reader(fst1_in_str); RandomAccessTableReader<VectorFstHolder> fst2_reader(fst2_in_str); TableWriter<VectorFstHolder> fst_writer(fst_out_str); int32 n_done = 0, n_err = 0; for (; !fst1_reader.Done(); fst1_reader.Next()) { std::string key = fst1_reader.Key(); if (!fst2_reader.HasKey(key)) { KALDI_WARN << "No such key " << key << " in second table."; n_err++; } else { const VectorFst<StdArc> &fst1(fst1_reader.Value()), &fst2(fst2_reader.Value(key)); VectorFst<StdArc> result; TableCompose(fst1, fst2, &result, opts); if (result.NumStates() == 0) { KALDI_WARN << "Empty output for key " << key; n_err++; } else { fst_writer.Write(key, result); n_done++; } } } KALDI_LOG << "Successfully composed " << n_done << " FSTs, errors or " << "empty output on " << n_err; } else { KALDI_ERR << "The combination of tables/non-tables and match-type that you " << "supplied is not currently supported. Either implement this, " << "ask the maintainers to implement it, or call this program " << "differently."; } } catch(const std::exception &e) { std::cerr << e.what(); return -1; } } |