Blame view
tools/openfst-1.6.7/src/include/fst/extensions/mpdt/compose.h
10.3 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. // // Compose an MPDT and an FST. #ifndef FST_EXTENSIONS_MPDT_COMPOSE_H_ #define FST_EXTENSIONS_MPDT_COMPOSE_H_ #include <list> #include <fst/extensions/mpdt/mpdt.h> #include <fst/extensions/pdt/compose.h> #include <fst/compose.h> namespace fst { template <class Filter> class MPdtParenFilter { public: using FST1 = typename Filter::FST1; using FST2 = typename Filter::FST2; using Arc = typename Filter::Arc; using Label = typename Arc::Label; using StateId = typename Arc::StateId; using Weight = typename Arc::Weight; using Matcher1 = typename Filter::Matcher1; using Matcher2 = typename Filter::Matcher2; using StackId = StateId; using ParenStack = internal::MPdtStack<StackId, Label>; using FilterState1 = typename Filter::FilterState; using FilterState2 = IntegerFilterState<StackId>; using FilterState = PairFilterState<FilterState1, FilterState2>; MPdtParenFilter(const FST1 &fst1, const FST2 &fst2, Matcher1 *matcher1 = nullptr, Matcher2 *matcher2 = nullptr, const std::vector<std::pair<Label, Label>> *parens = nullptr, const std::vector<Label> *assignments = nullptr, bool expand = false, bool keep_parens = true) : filter_(fst1, fst2, matcher1, matcher2), parens_(parens ? *parens : std::vector<std::pair<Label, Label>>()), assignments_(assignments ? *assignments : std::vector<Label>()), expand_(expand), keep_parens_(keep_parens), fs_(FilterState::NoState()), stack_(parens_, assignments_), paren_id_(-1) { if (parens) { for (const auto &pair : *parens) { parens_.push_back(pair); GetMatcher1()->AddOpenParen(pair.first); GetMatcher2()->AddOpenParen(pair.first); if (!expand_) { GetMatcher1()->AddCloseParen(pair.second); GetMatcher2()->AddCloseParen(pair.second); } } } } MPdtParenFilter(const MPdtParenFilter &filter, bool safe = false) : filter_(filter.filter_, safe), parens_(filter.parens_), expand_(filter.expand_), keep_parens_(filter.keep_parens_), fs_(FilterState::NoState()), stack_(filter.parens_, filter.assignments_), paren_id_(-1) {} FilterState Start() const { return FilterState(filter_.Start(), FilterState2(0)); } void SetState(StateId s1, StateId s2, const FilterState &fs) { fs_ = fs; filter_.SetState(s1, s2, fs_.GetState1()); if (!expand_) return; const auto paren_id = stack_.Top(fs.GetState2().GetState()); if (paren_id != paren_id_) { if (paren_id_ != -1) { GetMatcher1()->RemoveCloseParen(parens_[paren_id_].second); GetMatcher2()->RemoveCloseParen(parens_[paren_id_].second); } paren_id_ = paren_id; if (paren_id_ != -1) { GetMatcher1()->AddCloseParen(parens_[paren_id_].second); GetMatcher2()->AddCloseParen(parens_[paren_id_].second); } } } FilterState FilterArc(Arc *arc1, Arc *arc2) const { const auto fs1 = filter_.FilterArc(arc1, arc2); const auto &fs2 = fs_.GetState2(); if (fs1 == FilterState1::NoState()) return FilterState::NoState(); if (arc1->olabel == kNoLabel && arc2->ilabel) { // arc2 parentheses. if (keep_parens_) { arc1->ilabel = arc2->ilabel; } else if (arc2->ilabel) { arc2->olabel = arc1->ilabel; } return FilterParen(arc2->ilabel, fs1, fs2); } else if (arc2->ilabel == kNoLabel && arc1->olabel) { // arc1 parentheses if (keep_parens_) { arc2->olabel = arc1->olabel; } else { arc1->ilabel = arc2->olabel; } return FilterParen(arc1->olabel, fs1, fs2); } else { return FilterState(fs1, fs2); } } void FilterFinal(Weight *w1, Weight *w2) const { if (fs_.GetState2().GetState() != 0) *w1 = Weight::Zero(); filter_.FilterFinal(w1, w2); } // Returns respective matchers; ownership stays with filter. Matcher1 *GetMatcher1() { return filter_.GetMatcher1(); } Matcher2 *GetMatcher2() { return filter_.GetMatcher2(); } uint64 Properties(uint64 iprops) const { const auto oprops = filter_.Properties(iprops); return oprops & kILabelInvariantProperties & kOLabelInvariantProperties; } private: const FilterState FilterParen(Label label, const FilterState1 &fs1, const FilterState2 &fs2) const { if (!expand_) return FilterState(fs1, fs2); const auto stack_id = stack_.Find(fs2.GetState(), label); if (stack_id < 0) { return FilterState::NoState(); } else { return FilterState(fs1, FilterState2(stack_id)); } } Filter filter_; std::vector<std::pair<Label, Label>> parens_; std::vector<Label> assignments_; bool expand_; // Expands to FST? bool keep_parens_; // Retains parentheses in output? FilterState fs_; // Current filter state. mutable ParenStack stack_; ssize_t paren_id_; }; // Class to setup composition options for MPDT composition. Default is to take // the MPDT as the first composition argument. template <class Arc, bool left_pdt = true> class MPdtComposeFstOptions : public ComposeFstOptions<Arc, ParenMatcher<Fst<Arc>>, MPdtParenFilter<AltSequenceComposeFilter< ParenMatcher<Fst<Arc>> >> > { public: using Label = typename Arc::Label; using MPdtMatcher = ParenMatcher<Fst<Arc>>; using MPdtFilter = MPdtParenFilter<AltSequenceComposeFilter<MPdtMatcher>>; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::matcher1; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::matcher2; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::filter; MPdtComposeFstOptions(const Fst<Arc> &ifst1, const std::vector<std::pair<Label, Label>> &parens, const std::vector<typename Arc::Label> &assignments, const Fst<Arc> &ifst2, bool expand = false, bool keep_parens = true) { matcher1 = new MPdtMatcher(ifst1, MATCH_OUTPUT, kParenList); matcher2 = new MPdtMatcher(ifst2, MATCH_INPUT, kParenLoop); filter = new MPdtFilter(ifst1, ifst2, matcher1, matcher2, &parens, &assignments, expand, keep_parens); } }; // Class to setup composition options for PDT with FST composition. // Specialization is for the FST as the first composition argument. template <class Arc> class MPdtComposeFstOptions<Arc, false> : public ComposeFstOptions< Arc, ParenMatcher<Fst<Arc>>, MPdtParenFilter<SequenceComposeFilter<ParenMatcher<Fst<Arc>> >> > { public: using Label = typename Arc::Label; using MPdtMatcher = ParenMatcher<Fst<Arc>>; using MPdtFilter = MPdtParenFilter<SequenceComposeFilter<MPdtMatcher>>; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::matcher1; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::matcher2; using ComposeFstOptions<Arc, MPdtMatcher, MPdtFilter>::filter; MPdtComposeFstOptions(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, const std::vector<std::pair<Label, Label>> &parens, const std::vector<typename Arc::Label> &assignments, bool expand = false, bool keep_parens = true) { matcher1 = new MPdtMatcher(ifst1, MATCH_OUTPUT, kParenLoop); matcher2 = new MPdtMatcher(ifst2, MATCH_INPUT, kParenList); filter = new MPdtFilter(ifst1, ifst2, matcher1, matcher2, &parens, &assignments, expand, keep_parens); } }; struct MPdtComposeOptions { bool connect; // Connect output? PdtComposeFilter filter_type; // Which pre-defined filter to use. explicit MPdtComposeOptions(bool connect = true, PdtComposeFilter filter_type = PAREN_FILTER) : connect(connect), filter_type(filter_type) {} }; // Composes multi-pushdown transducer (MPDT) encoded as an FST (1st arg) and an // FST (2nd arg) with the result also an MPDT encoded as an FST (3rd arg). In // theMPDTs, some transitions are labeled with open or close parentheses (and // associated with a stack). To be interpreted as an MPDT, the parents on each // stack must balance on a path (see MPdtExpand()). The open-close parenthesis // label pairs are passed using the parens arguments, and the stack assignments // are passed using the assignments argument. template <class Arc> void Compose( const Fst<Arc> &ifst1, const std::vector<std::pair<typename Arc::Label, typename Arc::Label>> &parens, const std::vector<typename Arc::Label> &assignments, const Fst<Arc> &ifst2, MutableFst<Arc> *ofst, const MPdtComposeOptions &opts = MPdtComposeOptions()) { bool expand = opts.filter_type != PAREN_FILTER; bool keep_parens = opts.filter_type != EXPAND_FILTER; MPdtComposeFstOptions<Arc, true> copts(ifst1, parens, assignments, ifst2, expand, keep_parens); copts.gc_limit = 0; *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); if (opts.connect) Connect(ofst); } // Composes an FST (1st arg) and a multi-pushdown transducer (MPDT) encoded as // an FST (2nd arg) with the result also an MPDT encoded as an FST (3rd arg). // In the MPDTs, some transitions are labeled with open or close parentheses // (and associated with a stack). To be interpreted as an MPDT, the parents on // each stack must balance on a path (see MPdtExpand()). The open-close // parenthesis label pairs are passed using the parens arguments, and the stack // assignments are passed using the assignments argument. template <class Arc> void Compose( const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, const std::vector<std::pair<typename Arc::Label, typename Arc::Label>> &parens, const std::vector<typename Arc::Label> &assignments, MutableFst<Arc> *ofst, const MPdtComposeOptions &opts = MPdtComposeOptions()) { bool expand = opts.filter_type != PAREN_FILTER; bool keep_parens = opts.filter_type != EXPAND_FILTER; MPdtComposeFstOptions<Arc, false> copts(ifst1, ifst2, parens, assignments, expand, keep_parens); copts.gc_limit = 0; *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); if (opts.connect) Connect(ofst); } } // namespace fst #endif // FST_EXTENSIONS_MPDT_COMPOSE_H_ |