Blame view

tools/openfst-1.6.7/src/bin/fstsymbols.cc 976 Bytes
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  // See www.openfst.org for extensive documentation on this weighted
  // finite-state transducer library.
  
  #include <fst/flags.h>
  
  DEFINE_string(isymbols, "", "Input label symbol table");
  DEFINE_string(osymbols, "", "Output label symbol table");
  DEFINE_bool(clear_isymbols, false, "Clear input symbol table");
  DEFINE_bool(clear_osymbols, false, "Clear output symbol table");
  DEFINE_string(relabel_ipairs, "", "Input relabel pairs (numeric)");
  DEFINE_string(relabel_opairs, "", "Output relabel pairs (numeric)");
  DEFINE_string(save_isymbols, "", "Save fst file's input symbol table to file");
  DEFINE_string(save_osymbols, "", "Save fst file's output symbol table to file");
  DEFINE_bool(allow_negative_labels, false,
              "Allow negative labels (not recommended; may cause conflicts)");
  DEFINE_bool(verify, false, "Verify fst properities before saving");
  
  int fstsymbols_main(int argc, char **argv);
  
  int main(int argc, char **argv) { return fstsymbols_main(argc, argv); }