42 std::string usage =
"Determinizes an FST.\n\n Usage: ";
44 usage +=
" [in.fst [out.fst]]\n";
47 SET_FLAGS(usage.c_str(), &argc, &argv,
true);
55 LOG(ERROR) << argv[0] <<
": Unknown or unsupported determinization type: " 56 << FST_FLAGS_det_type;
60 const std::string in_name =
61 (argc > 1 && strcmp(argv[1],
"-") != 0) ? argv[1] :
"";
62 const std::string out_name =
63 (argc > 2 && strcmp(argv[2],
"-") != 0) ? argv[2] :
"";
65 std::unique_ptr<FstClass> ifst(FstClass::Read(in_name));
68 VectorFstClass ofst(ifst->ArcType());
70 const auto weight_threshold =
71 FST_FLAGS_weight.empty()
72 ? WeightClass::Zero(ifst->WeightType())
73 : WeightClass(ifst->WeightType(), FST_FLAGS_weight);
75 const s::DeterminizeOptions opts(
76 FST_FLAGS_delta, weight_threshold, FST_FLAGS_nstate,
77 FST_FLAGS_subsequential_label, det_type,
78 FST_FLAGS_increment_subsequential_label);
82 return !ofst.Write(out_name);
void ShowUsage(bool long_usage=true)
void Determinize(const Fst< Arc > &ifst, MutableFst< Arc > *ofst, const DeterminizeOptions< Arc > &opts=DeterminizeOptions< Arc >())
DECLARE_bool(increment_subsequential_label)
bool GetDeterminizeType(std::string_view str, DeterminizeType *det_type)
#define SET_FLAGS(usage, argc, argv, rmflags)
int fstdeterminize_main(int argc, char **argv)