gmm-info.cc
Go to the documentation of this file.
1 // gmmbin/gmm-info.cc
2 
3 // Copyright 2012 Johns Hopkins University (Author: Daniel Povey)
4 
5 // See ../../COPYING for clarification regarding multiple authors
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 // http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
15 // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
16 // MERCHANTABLITY OR NON-INFRINGEMENT.
17 // See the Apache 2 License for the specific language governing permissions and
18 // limitations under the License.
19 
20 #include "base/kaldi-common.h"
21 #include "util/common-utils.h"
22 #include "gmm/am-diag-gmm.h"
23 #include "hmm/transition-model.h"
24 
25 int main(int argc, char *argv[]) {
26  try {
27  using namespace kaldi;
28  typedef kaldi::int32 int32;
29 
30  const char *usage =
31  "Write to standard output various properties of GMM-based model\n"
32  "Usage: gmm-info [options] <model-in>\n"
33  "e.g.:\n"
34  " gmm-info 1.mdl\n"
35  "See also: gmm-global-info, am-info\n";
36 
37  ParseOptions po(usage);
38 
39  po.Read(argc, argv);
40 
41  if (po.NumArgs() != 1) {
42  po.PrintUsage();
43  exit(1);
44  }
45 
46  std::string model_in_filename = po.GetArg(1);
47 
48  AmDiagGmm am_gmm;
49  TransitionModel trans_model;
50  {
51  bool binary_read;
52  Input ki(model_in_filename, &binary_read);
53  trans_model.Read(ki.Stream(), binary_read);
54  am_gmm.Read(ki.Stream(), binary_read);
55  }
56 
57  std::cout << "number of phones " << trans_model.GetPhones().size() << '\n';
58  std::cout << "number of pdfs " << trans_model.NumPdfs() << '\n';
59  std::cout << "number of transition-ids " << trans_model.NumTransitionIds()
60  << '\n';
61  std::cout << "number of transition-states "
62  << trans_model.NumTransitionStates() << '\n';
63  std::cout << "feature dimension " << am_gmm.Dim() << '\n';
64  std::cout << "number of gaussians " << am_gmm.NumGauss() << '\n';
65  return 0;
66  } catch(const std::exception &e) {
67  std::cerr << e.what() << '\n';
68  return -1;
69  }
70 }
71 
72 
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
Definition: chain.dox:20
int32 NumGauss() const
Definition: am-diag-gmm.cc:72
const std::vector< int32 > & GetPhones() const
Returns a sorted, unique list of phones.
void PrintUsage(bool print_command_line=false)
Prints the usage documentation [provided in the constructor].
kaldi::int32 int32
std::istream & Stream()
Definition: kaldi-io.cc:826
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
Definition: parse-options.h:36
int32 NumTransitionIds() const
Returns the total number of transition-ids (note, these are one-based).
void Read(std::istream &is, bool binary)
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.
int32 Dim() const
Definition: am-diag-gmm.h:79
int main(int argc, char *argv[])
Definition: gmm-info.cc:25
int NumArgs() const
Number of positional parameters (c.f. argc-1).
void Read(std::istream &in_stream, bool binary)
Definition: am-diag-gmm.cc:147
int32 NumTransitionStates() const
Returns the total number of transition-states (note, these are one-based).