nnet-compute.h File Reference
#include "nnet2/nnet-nnet.h"
Include dependency graph for nnet-compute.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 kaldi
 This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
 
 kaldi::nnet2
 

Functions

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...