#include <iterator>
#include <sstream>
#include <iomanip>
#include "nnet3/nnet-parse.h"
#include "cudamatrix/cu-vector.h"
#include "cudamatrix/cu-matrix.h"
Go to the source code of this file.
|
| kaldi |
| This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
|
|
| kaldi::nnet3 |
|
|
bool | DescriptorTokenize (const std::string &input, std::vector< std::string > *tokens) |
| This function tokenizes input when parsing Descriptor configuration values. More...
|
|
std::string | ErrorContext (std::istream &is) |
| Return a string used in error messages. More...
|
|
std::string | ErrorContext (const std::string &str) |
|
static void | PrintFloatSuccinctly (std::ostream &os, BaseFloat f) |
|
std::string | SummarizeVector (const VectorBase< float > &vec) |
| Returns a string that summarizes a vector fairly succintly, for printing stats in info lines. More...
|
|
std::string | SummarizeVector (const VectorBase< double > &vec) |
|
std::string | SummarizeVector (const CuVectorBase< BaseFloat > &cu_vec) |
|
void | PrintParameterStats (std::ostringstream &os, const std::string &name, const CuVectorBase< BaseFloat > ¶ms, bool include_mean=false) |
| Print to 'os' some information about the mean and standard deviation of some parameters, used in Info() functions in nnet-simple-component.cc. More...
|
|
void | PrintParameterStats (std::ostringstream &os, const std::string &name, const CuMatrix< BaseFloat > ¶ms, bool include_mean=false, bool include_row_norms=false, bool include_column_norms=false, bool include_singular_values=false) |
| Print to 'os' some information about the mean and standard deviation of some parameters, used in Info() functions in nnet-simple-component.cc. More...
|
|
void | ParseConfigLines (const std::vector< std::string > &lines, std::vector< ConfigLine > *config_lines) |
|
bool | NameMatchesPattern (const char *name, const char *pattern) |
|