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::nnet2 |
|
|
void | NnetComputation (const Nnet &nnet, const CuMatrixBase< BaseFloat > &input, bool pad_input, CuMatrixBase< BaseFloat > *output) |
| Does the basic neural net computation, on a sequence of data (e.g. More...
|
|
void | NnetComputationChunked (const Nnet &nnet, const CuMatrixBase< BaseFloat > &input, int32 chunk_size, CuMatrixBase< BaseFloat > *output) |
| Does the basic neural net computation, on a sequence of data (e.g. More...
|
|
BaseFloat | NnetGradientComputation (const Nnet &nnet, const MatrixBase< BaseFloat > &input, bool pad_input, BaseFloat utterance_weight, const std::vector< int32 > &labels, Nnet *nnet_to_update) |
| Does the neural net computation and backprop, given input and labels. More...
|
|