FmllrOptions Struct Reference

#include <fmllr-diag-gmm.h>

Collaboration diagram for FmllrOptions:

Public Member Functions

 FmllrOptions ()
 
void Register (OptionsItf *opts)
 

Public Attributes

std::string update_type
 "full", "diag", "offset", "none" More...
 
BaseFloat min_count
 
int32 num_iters
 

Detailed Description

Definition at line 43 of file fmllr-diag-gmm.h.

Constructor & Destructor Documentation

◆ FmllrOptions()

FmllrOptions ( )
inline

Definition at line 47 of file fmllr-diag-gmm.h.

47 : update_type("full"), min_count(500.0), num_iters(40) { }
std::string update_type
"full", "diag", "offset", "none"

Member Function Documentation

◆ Register()

void Register ( OptionsItf opts)
inline

Definition at line 48 of file fmllr-diag-gmm.h.

References OptionsItf::Register().

Referenced by main().

48  {
49  opts->Register("fmllr-update-type", &update_type,
50  "Update type for fMLLR (\"full\"|\"diag\"|\"offset\"|\"none\")");
51  opts->Register("fmllr-min-count", &min_count,
52  "Minimum count required to update fMLLR");
53  opts->Register("fmllr-num-iters", &num_iters,
54  "Number of iterations in fMLLR update phase.");
55  }
std::string update_type
"full", "diag", "offset", "none"

Member Data Documentation

◆ min_count

BaseFloat min_count

Definition at line 45 of file fmllr-diag-gmm.h.

Referenced by FmllrDiagGmmAccs::Update().

◆ num_iters

int32 num_iters

Definition at line 46 of file fmllr-diag-gmm.h.

Referenced by kaldi::ComputeFmllrLogDet(), and FmllrDiagGmmAccs::Update().

◆ update_type

std::string update_type

The documentation for this struct was generated from the following file: