Blame view
src/fstext/kaldi-fst-io.cc
5.2 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 |
// fstext/kaldi-fst-io.cc // Copyright 2009-2011 Microsoft Corporation // 2012-2015 Johns Hopkins University (Author: Daniel Povey) // 2013 Guoguo Chen // 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 "fstext/kaldi-fst-io.h" #include "base/kaldi-error.h" #include "base/kaldi-math.h" #include "util/kaldi-io.h" namespace fst { VectorFst<StdArc> *ReadFstKaldi(std::string rxfilename) { if (rxfilename == "") rxfilename = "-"; // interpret "" as stdin, // for compatibility with OpenFst conventions. kaldi::Input ki(rxfilename); fst::FstHeader hdr; if (!hdr.Read(ki.Stream(), rxfilename)) KALDI_ERR << "Reading FST: error reading FST header from " << kaldi::PrintableRxfilename(rxfilename); FstReadOptions ropts("<unspecified>", &hdr); VectorFst<StdArc> *fst = VectorFst<StdArc>::Read(ki.Stream(), ropts); if (!fst) KALDI_ERR << "Could not read fst from " << kaldi::PrintableRxfilename(rxfilename); return fst; } Fst<StdArc> *ReadFstKaldiGeneric(std::string rxfilename, bool throw_on_err) { if (rxfilename == "") rxfilename = "-"; // interpret "" as stdin, // for compatibility with OpenFst conventions. kaldi::Input ki(rxfilename); fst::FstHeader hdr; // Read FstHeader which contains the type of FST if (!hdr.Read(ki.Stream(), rxfilename)) { if(throw_on_err) { KALDI_ERR << "Reading FST: error reading FST header from " << kaldi::PrintableRxfilename(rxfilename); } else { KALDI_WARN << "We fail to read FST header from " << kaldi::PrintableRxfilename(rxfilename) << ". A NULL pointer is returned."; return NULL; } } // Check the type of Arc if (hdr.ArcType() != fst::StdArc::Type()) { if(throw_on_err) { KALDI_ERR << "FST with arc type " << hdr.ArcType() << " is not supported."; } else { KALDI_WARN << "Fst with arc type" << hdr.ArcType() << " is not supported. A NULL pointer is returned."; return NULL; } } // Read the FST FstReadOptions ropts("<unspecified>", &hdr); Fst<StdArc> *fst = NULL; if (hdr.FstType() == "const") { fst = ConstFst<StdArc>::Read(ki.Stream(), ropts); } else if (hdr.FstType() == "vector") { fst = VectorFst<StdArc>::Read(ki.Stream(), ropts); } if (!fst) { if(throw_on_err) { KALDI_ERR << "Could not read fst from " << kaldi::PrintableRxfilename(rxfilename); } else { KALDI_WARN << "Could not read fst from " << kaldi::PrintableRxfilename(rxfilename) << ". A NULL pointer is returned."; return NULL; } } return fst; } VectorFst<StdArc> *CastOrConvertToVectorFst(Fst<StdArc> *fst) { // This version currently supports ConstFst<StdArc> or VectorFst<StdArc> std::string real_type = fst->Type(); KALDI_ASSERT(real_type == "vector" || real_type == "const"); if (real_type == "vector") { return dynamic_cast<VectorFst<StdArc> *>(fst); } else { // As the 'fst' can't cast to VectorFst, we carete a new // VectorFst<StdArc> initialized by 'fst', and delete 'fst'. VectorFst<StdArc> *new_fst = new VectorFst<StdArc>(*fst); delete fst; return new_fst; } } void ReadFstKaldi(std::string rxfilename, fst::StdVectorFst *ofst) { fst::StdVectorFst *fst = ReadFstKaldi(rxfilename); *ofst = *fst; delete fst; } void WriteFstKaldi(const VectorFst<StdArc> &fst, std::string wxfilename) { if (wxfilename == "") wxfilename = "-"; // interpret "" as stdout, // for compatibility with OpenFst conventions. bool write_binary = true, write_header = false; kaldi::Output ko(wxfilename, write_binary, write_header); FstWriteOptions wopts(kaldi::PrintableWxfilename(wxfilename)); fst.Write(ko.Stream(), wopts); } fst::VectorFst<fst::StdArc> *ReadAndPrepareLmFst(std::string rxfilename) { // ReadFstKaldi() will die with exception on failure. fst::VectorFst<fst::StdArc> *ans = fst::ReadFstKaldi(rxfilename); if (ans->Properties(fst::kAcceptor, true) == 0) { // If it's not already an acceptor, project on the output, i.e. copy olabels // to ilabels. Generally the G.fst's on disk will have the disambiguation // symbol #0 on the input symbols of the backoff arc, and projection will // replace them with epsilons which is what is on the output symbols of // those arcs. fst::Project(ans, fst::PROJECT_OUTPUT); } if (ans->Properties(fst::kILabelSorted, true) == 0) { // Make sure LM is sorted on ilabel. fst::ILabelCompare<fst::StdArc> ilabel_comp; fst::ArcSort(ans, ilabel_comp); } return ans; } } // end namespace fst |