Blame view
tools/openfst-1.6.7/src/extensions/special/phi-fst.cc
1.32 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 |
// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. #include <fst/fst.h> #include <fst/extensions/special/phi-fst.h> DEFINE_int64(phi_fst_phi_label, 0, "Label of transitions to be interpreted as phi ('failure') " "transitions"); DEFINE_bool(phi_fst_phi_loop, true, "When true, a phi self loop consumes a symbol"); DEFINE_string(phi_fst_rewrite_mode, "auto", "Rewrite both sides when matching? One of:" " \"auto\" (rewrite iff acceptor), \"always\", \"never\""); namespace fst { const char phi_fst_type[] = "phi"; const char input_phi_fst_type[] = "input_phi"; const char output_phi_fst_type[] = "output_phi"; static FstRegisterer<StdPhiFst> PhiFst_StdArc_registerer; static FstRegisterer<LogPhiFst> PhiFst_LogArc_registerer; static FstRegisterer<Log64PhiFst> PhiFst_Log64Arc_registerer; static FstRegisterer<StdInputPhiFst> InputPhiFst_StdArc_registerer; static FstRegisterer<LogInputPhiFst> InputPhiFst_LogArc_registerer; static FstRegisterer<Log64InputPhiFst> InputPhiFst_Log64Arc_registerer; static FstRegisterer<StdOutputPhiFst> OutputPhiFst_StdArc_registerer; static FstRegisterer<LogOutputPhiFst> OutputPhiFst_LogArc_registerer; static FstRegisterer<Log64OutputPhiFst> OutputPhiFst_Log64Arc_registerer; } // namespace fst |