25 int main(
int argc,
char *argv[]) {
27 using namespace kaldi;
31 "Write to standard output various properties of full-covariance GMM model\n" 32 "This is for a single mixture of Gaussians, e.g. as used for a UBM.\n" 33 "Usage: fgmm-global-info [options] <gmm>\n" 35 " fgmm-global-info 1.ubm\n";
46 std::string model_rxfilename = po.
GetArg(1);
51 std::cout <<
"number of gaussians " << gmm.
NumGauss() <<
'\n';
52 std::cout <<
"feature dimension " << gmm.
Dim() <<
'\n';
54 }
catch(
const std::exception &e) {
55 std::cerr << e.what() <<
'\n';
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
int32 Dim() const
Returns the dimensionality of the Gaussian mean vectors.
Definition for Gaussian Mixture Model with full covariances.
void PrintUsage(bool print_command_line=false)
Prints the usage documentation [provided in the constructor].
void ReadKaldiObject(const std::string &filename, Matrix< float > *m)
The class ParseOptions is for parsing command-line options; see Parsing command-line options for more...
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 NumGauss() const
Returns the number of mixture components in the GMM.
int main(int argc, char *argv[])
int NumArgs() const
Number of positional parameters (c.f. argc-1).