sgmm2-latgen-faster-parallel.cc File Reference
#include <string>
#include "base/kaldi-common.h"
#include "util/common-utils.h"
#include "sgmm2/am-sgmm2.h"
#include "hmm/transition-model.h"
#include "fstext/fstext-lib.h"
#include "decoder/decoder-wrappers.h"
#include "sgmm2/decodable-am-sgmm2.h"
#include "util/kaldi-thread.h"
#include "base/timer.h"
Include dependency graph for sgmm2-latgen-faster-parallel.cc:

Go to the source code of this file.

Namespaces

 kaldi
 This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
 

Functions

void ProcessUtterance (const AmSgmm2 &am_sgmm, const TransitionModel &trans_model, double log_prune, double acoustic_scale, const Matrix< BaseFloat > &features, RandomAccessInt32VectorVectorReader &gselect_reader, RandomAccessBaseFloatVectorReaderMapped &spkvecs_reader, const fst::SymbolTable *word_syms, const std::string &utt, bool determinize, bool allow_partial, Int32VectorWriter *alignments_writer, Int32VectorWriter *words_writer, CompactLatticeWriter *compact_lattice_writer, LatticeWriter *lattice_writer, LatticeFasterDecoder *decoder, double *like_sum, int64 *frame_sum, int32 *num_done, int32 *num_err, TaskSequencer< DecodeUtteranceLatticeFasterClass > *sequencer)
 
int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 107 of file sgmm2-latgen-faster-parallel.cc.

References kaldi::ClassifyRspecifier(), LatticeFasterDecoderConfig::determinize_lattice, SequentialTableReader< Holder >::Done(), Timer::Elapsed(), ParseOptions::GetArg(), ParseOptions::GetOptArg(), RandomAccessTableReader< Holder >::HasKey(), KALDI_ERR, KALDI_LOG, KALDI_WARN, SequentialTableReader< Holder >::Key(), kaldi::kNoRspecifier, SequentialTableReader< Holder >::Next(), TaskSequencerConfig::num_threads, ParseOptions::NumArgs(), MatrixBase< Real >::NumRows(), TableWriter< Holder >::Open(), ParseOptions::PrintUsage(), kaldi::ProcessUtterance(), ParseOptions::Read(), TransitionModel::Read(), AmSgmm2::Read(), fst::ReadFstKaldiGeneric(), LatticeFasterDecoderConfig::Register(), ParseOptions::Register(), TaskSequencerConfig::Register(), Timer::Reset(), Input::Stream(), RandomAccessTableReader< Holder >::Value(), SequentialTableReader< Holder >::Value(), and TaskSequencer< C >::Wait().

107  {
108  try {
109  using namespace kaldi;
110  typedef kaldi::int32 int32;
111  using fst::SymbolTable;
112  using fst::Fst;
113  using fst::VectorFst;
114  using fst::StdArc;
115 
116  const char *usage =
117  "Decode features using SGMM-based model. This version accepts the --num-threads\n"
118  "option but otherwise behaves identically to sgmm2-latgen-faster\n"
119  "Usage: sgmm2-latgen-faster-parallel [options] <model-in> (<fst-in>|<fsts-rspecifier>) "
120  "<features-rspecifier> <lattices-wspecifier> [<words-wspecifier> [<alignments-wspecifier>] ]\n";
121  ParseOptions po(usage);
122  BaseFloat acoustic_scale = 0.1;
123  bool allow_partial = false;
124  BaseFloat log_prune = 5.0;
125  string word_syms_filename, gselect_rspecifier, spkvecs_rspecifier,
126  utt2spk_rspecifier;
127 
128  LatticeFasterDecoderConfig decoder_opts;
129  TaskSequencerConfig sequencer_config; // has --num-threads option
130  decoder_opts.Register(&po);
131  sequencer_config.Register(&po);
132 
133  po.Register("acoustic-scale", &acoustic_scale,
134  "Scaling factor for acoustic likelihoods");
135  po.Register("log-prune", &log_prune,
136  "Pruning beam used to reduce number of exp() evaluations.");
137  po.Register("word-symbol-table", &word_syms_filename,
138  "Symbol table for words [for debug output]");
139  po.Register("allow-partial", &allow_partial,
140  "Produce output even when final state was not reached");
141  po.Register("gselect", &gselect_rspecifier,
142  "rspecifier for precomputed per-frame Gaussian indices.");
143  po.Register("spk-vecs", &spkvecs_rspecifier,
144  "rspecifier for speaker vectors");
145  po.Register("utt2spk", &utt2spk_rspecifier,
146  "rspecifier for utterance to speaker map");
147  po.Read(argc, argv);
148 
149  if (po.NumArgs() < 4 || po.NumArgs() > 6) {
150  po.PrintUsage();
151  exit(1);
152  }
153 
154  if (gselect_rspecifier == "")
155  KALDI_ERR << "--gselect option is required.";
156 
157  std::string model_in_filename = po.GetArg(1),
158  fst_in_str = po.GetArg(2),
159  feature_rspecifier = po.GetArg(3),
160  lattice_wspecifier = po.GetArg(4),
161  words_wspecifier = po.GetOptArg(5),
162  alignment_wspecifier = po.GetOptArg(6);
163 
164  double tot_like = 0.0;
165  kaldi::int64 frame_count = 0;
166  int num_done = 0, num_err = 0;
167  Timer timer;
168  Fst<StdArc> *decode_fst = NULL;
169  fst::SymbolTable *word_syms = NULL;
170 
172  sequencer_config);
173  TransitionModel trans_model;
174  kaldi::AmSgmm2 am_sgmm;
175  {
176  bool binary;
177  Input ki(model_in_filename, &binary);
178  trans_model.Read(ki.Stream(), binary);
179  am_sgmm.Read(ki.Stream(), binary);
180  }
181 
182  CompactLatticeWriter compact_lattice_writer;
183  LatticeWriter lattice_writer;
184 
185  bool determinize = decoder_opts.determinize_lattice;
186  if (! (determinize ? compact_lattice_writer.Open(lattice_wspecifier)
187  : lattice_writer.Open(lattice_wspecifier)))
188  KALDI_ERR << "Could not open table for writing lattices: "
189  << lattice_wspecifier;
190 
191  Int32VectorWriter words_writer(words_wspecifier);
192  Int32VectorWriter alignment_writer(alignment_wspecifier);
193 
194  if (word_syms_filename != "")
195  if (!(word_syms = fst::SymbolTable::ReadText(word_syms_filename)))
196  KALDI_ERR << "Could not read symbol table from file "
197  << word_syms_filename;
198 
199  RandomAccessInt32VectorVectorReader gselect_reader(gselect_rspecifier);
200  RandomAccessBaseFloatVectorReaderMapped spkvecs_reader(spkvecs_rspecifier,
201  utt2spk_rspecifier);
202 
203  if (ClassifyRspecifier(fst_in_str, NULL, NULL) == kNoRspecifier) { // a single FST.
204  SequentialBaseFloatMatrixReader feature_reader(feature_rspecifier);
205  // It's important that we initialize decode_fst after feature_reader, as it
206  // can prevent crashes on systems installed without enough virtual memory.
207  // It has to do with what happens on UNIX systems if you call fork() on a
208  // large process: the page-table entries are duplicated, which requires a
209  // lot of virtual memory.
210  decode_fst = fst::ReadFstKaldiGeneric(fst_in_str);
211  timer.Reset(); // exclude graph loading time.
212 
213  {
214  for (; !feature_reader.Done(); feature_reader.Next()) {
215  string utt = feature_reader.Key();
216  const Matrix<BaseFloat> &features(feature_reader.Value());
217  if (features.NumRows() == 0) {
218  KALDI_WARN << "Zero-length utterance: " << utt;
219  num_err++;
220  continue;
221  }
222 
223  // ProcessUtterance will take ownership of this.
225  *decode_fst, decoder_opts);
226 
227  ProcessUtterance(am_sgmm, trans_model, log_prune, acoustic_scale,
228  features, gselect_reader, spkvecs_reader, word_syms,
229  utt, determinize, allow_partial,
230  &alignment_writer, &words_writer, &compact_lattice_writer,
231  &lattice_writer, decoder, &tot_like, &frame_count,
232  &num_done, &num_err, &sequencer);
233  }
234  }
235  } else { // We have different FSTs for different utterances.
236  SequentialTableReader<fst::VectorFstHolder> fst_reader(fst_in_str);
237  RandomAccessBaseFloatMatrixReader feature_reader(feature_rspecifier);
238  for (; !fst_reader.Done(); fst_reader.Next()) {
239  std::string utt = fst_reader.Key();
240  if (!feature_reader.HasKey(utt)) {
241  KALDI_WARN << "Not decoding utterance " << utt
242  << " because no features available.";
243  num_err++;
244  continue;
245  }
246  const Matrix<BaseFloat> &features = feature_reader.Value(utt);
247  if (features.NumRows() == 0) {
248  KALDI_WARN << "Zero-length utterance: " << utt;
249  num_err++;
250  continue;
251  }
252  VectorFst<StdArc> *fst = fst_reader.Value().Copy(); // Note: this does
253  // a shallow copy because OpenFst is "smart" about these things and
254  // does reference counting. The constructor of LatticeFasterDecoder
255  // takes ownership of this FST (note: LatticeFasterDecoder has 2
256  // constructors, one of which takes ownership and one of which does not).
257  LatticeFasterDecoder *decoder = new LatticeFasterDecoder(decoder_opts,
258  fst);
259 
260  // ProcessUtterance takes ownership of "decoder".
261  ProcessUtterance(am_sgmm, trans_model, log_prune, acoustic_scale,
262  features, gselect_reader, spkvecs_reader, word_syms,
263  utt, determinize, allow_partial,
264  &alignment_writer, &words_writer, &compact_lattice_writer,
265  &lattice_writer, decoder, &tot_like, &frame_count,
266  &num_done, &num_err, &sequencer);
267  }
268  }
269  sequencer.Wait(); // Wait till all tasks are done.
270 
271  delete decode_fst;
272  delete word_syms;
273 
274  double elapsed = timer.Elapsed();
275  KALDI_LOG << "Decoded with " << sequencer_config.num_threads << " threads.";
276  KALDI_LOG << "Time taken [excluding initialization] "<< elapsed
277  << "s: real-time factor per thread assuming 100 frames/sec is "
278  << (sequencer_config.num_threads * elapsed * 100.0 / frame_count);
279  KALDI_LOG << "Done " << num_done << " utterances, failed for "
280  << num_err;
281  KALDI_LOG << "Overall log-likelihood per frame = " << (tot_like/frame_count)
282  << " over " << frame_count << " frames.";
283 
284  return (num_done != 0 ? 0 : 1);
285  } catch(const std::exception &e) {
286  std::cerr << e.what();
287  return -1;
288  }
289 }
void ProcessUtterance(const AmSgmm2 &am_sgmm, const TransitionModel &trans_model, double log_prune, double acoustic_scale, const Matrix< BaseFloat > &features, RandomAccessInt32VectorVectorReader &gselect_reader, RandomAccessBaseFloatVectorReaderMapped &spkvecs_reader, const fst::SymbolTable *word_syms, const std::string &utt, bool determinize, bool allow_partial, Int32VectorWriter *alignments_writer, Int32VectorWriter *words_writer, CompactLatticeWriter *compact_lattice_writer, LatticeWriter *lattice_writer, LatticeFasterDecoder *decoder, double *like_sum, int64 *frame_sum, int32 *num_done, int32 *num_err, TaskSequencer< DecodeUtteranceLatticeFasterClass > *sequencer)
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
Definition: chain.dox:20
Class for definition of the subspace Gmm acoustic model.
Definition: am-sgmm2.h:231
bool Open(const std::string &wspecifier)
Fst< StdArc > * ReadFstKaldiGeneric(std::string rxfilename, bool throw_on_err)
Definition: kaldi-fst-io.cc:45
void Reset()
Definition: timer.h:71
For an extended explanation of the framework of which grammar-fsts are a part, please see Support for...
Definition: graph.dox:21
fst::StdArc StdArc
This class is for when you are reading something in random access, but it may actually be stored per-...
Definition: kaldi-table.h:432
void Read(std::istream &is, bool binary)
Definition: am-sgmm2.cc:89
A templated class for writing objects to an archive or script file; see The Table concept...
Definition: kaldi-table.h:368
kaldi::int32 int32
RspecifierType ClassifyRspecifier(const std::string &rspecifier, std::string *rxfilename, RspecifierOptions *opts)
Definition: kaldi-table.cc:225
Allows random access to a collection of objects in an archive or script file; see The Table concept...
Definition: kaldi-table.h:233
float BaseFloat
Definition: kaldi-types.h:29
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
Definition: parse-options.h:36
void Read(std::istream &is, bool binary)
A templated class for reading objects sequentially from an archive or script file; see The Table conc...
Definition: kaldi-table.h:287
#define KALDI_ERR
Definition: kaldi-error.h:147
#define KALDI_WARN
Definition: kaldi-error.h:150
This is the "normal" lattice-generating decoder.
MatrixIndexT NumRows() const
Returns number of rows (or zero for empty matrix).
Definition: kaldi-matrix.h:64
LatticeFasterDecoderTpl< fst::StdFst, decoder::StdToken > LatticeFasterDecoder
#define KALDI_LOG
Definition: kaldi-error.h:153
double Elapsed() const
Returns time in seconds.
Definition: timer.h:74
void Register(OptionsItf *opts)
Definition: kaldi-thread.h:160