Go to the source code of this file.
 | 
| int  | main (int argc, char *argv[]) | 
|   | 
◆ main()
      
        
          | int main  | 
          ( | 
          int  | 
          argc,  | 
        
        
           | 
           | 
          char *  | 
          argv[]  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Definition at line 24 of file hmm-info.cc.
References ParseOptions::GetArg(), TransitionModel::GetPhones(), ParseOptions::NumArgs(), TransitionModel::NumPdfs(), TransitionModel::NumTransitionIds(), TransitionModel::NumTransitionStates(), ParseOptions::PrintUsage(), ParseOptions::Read(), TransitionModel::Read(), and Input::Stream().
   26     using namespace kaldi;
    30         "Write to standard output various properties of HMM-based transition model\n"    31         "Usage:  hmm-info [options] <model-in>\n"    33         " hmm-info trans.mdl\n";
    39     if (po.NumArgs() != 1) {
    44     std::string model_in_filename = po.GetArg(1);
    49       Input ki(model_in_filename, &binary_read);
    50       trans_model.
Read(ki.Stream(), binary_read);
    53     std::cout << 
"number of phones " << trans_model.
GetPhones().size() << 
'\n';
    54     std::cout << 
"number of pdfs " << trans_model.
NumPdfs() << 
'\n';
    57     std::cout << 
"number of transition-states "    59   } 
catch(
const std::exception &e) {
    60     std::cerr << e.what() << 
'\n';
 This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
 
const std::vector< int32 > & GetPhones() const
Returns a sorted, unique list of phones. 
 
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
 
int32 NumTransitionIds() const
Returns the total number of transition-ids (note, these are one-based). 
 
void Read(std::istream &is, bool binary)
 
int32 NumTransitionStates() const
Returns the total number of transition-states (note, these are one-based).