26 int main(
int argc, 
char *argv[]) {
    28     using namespace kaldi;
    30     typedef kaldi::int64 int64;
    31     using fst::SymbolTable;
    36         "Remove state-sequences from lattice weights\n"    37         "Usage: lattice-rmali [options] lattice-rspecifier lattice-wspecifier\n"    38         " e.g.: lattice-rmali  ark:1.lats ark:proj.lats\n";
    49     std::string lats_rspecifier = po.
GetArg(1),
    50         lats_wspecifier = po.
GetArg(2);
    59     for (; !lattice_reader.
Done(); lattice_reader.
Next()) {
    60       std::string key = lattice_reader.
Key();
    64       compact_lattice_writer.
Write(key, clat);
    67     KALDI_LOG << 
"Done removing alignments from " << n_done << 
" lattices.";
    68     return (n_done != 0 ? 0 : 1);
    69   } 
catch(
const std::exception &e) {
    70     std::cerr << e.what();
 
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
 
void RemoveAlignmentsFromCompactLattice(MutableFst< ArcTpl< CompactLatticeWeightTpl< Weight, Int > > > *fst)
Removes state-level alignments (the strings that are part of the weights). 
 
void PrintUsage(bool print_command_line=false)
Prints the usage documentation [provided in the constructor]. 
 
int main(int argc, char *argv[])
 
A templated class for writing objects to an archive or script file; see The Table concept...
 
void Write(const std::string &key, const T &value) const
 
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
 
A templated class for reading objects sequentially from an archive or script file; see The Table conc...
 
int Read(int argc, const char *const *argv)
Parses the command line options and fills the ParseOptions-registered variables. 
 
std::string GetArg(int param) const
Returns one of the positional parameters; 1-based indexing for argc/argv compatibility. 
 
fst::VectorFst< CompactLatticeArc > CompactLattice
 
int NumArgs() const
Number of positional parameters (c.f. argc-1).