online-feature-test.cc File Reference
Include dependency graph for online-feature-test.cc:

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:
 

Functions

void GetOutput (OnlineFeatureInterface *a, Matrix< BaseFloat > *output)
 
bool RandomSplit (int32 wav_dim, std::vector< int32 > *piece_dim, int32 num_pieces, int32 trials=5)
 
void TestOnlineMatrixCacheFeature ()
 
void TestOnlineDeltaFeature ()
 
void TestOnlineSpliceFrames ()
 
void TestOnlineMfcc ()
 
void TestOnlinePlp ()
 
void TestOnlineTransform ()
 
void TestOnlineAppendFeature ()
 
void TestRecyclingVector ()
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 419 of file online-feature-test.cc.

References rnnlm::i, kaldi::TestOnlineAppendFeature(), kaldi::TestOnlineDeltaFeature(), kaldi::TestOnlineMatrixCacheFeature(), kaldi::TestOnlineMfcc(), kaldi::TestOnlinePlp(), kaldi::TestOnlineSpliceFrames(), kaldi::TestOnlineTransform(), and kaldi::TestRecyclingVector().

419  {
420  using namespace kaldi;
421  for (int i = 0; i < 10; i++) {
425  TestOnlineMfcc();
426  TestOnlinePlp();
430  }
431  std::cout << "Test OK.\n";
432 }
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
Definition: chain.dox:20
void TestOnlinePlp()
void TestOnlineMatrixCacheFeature()
void TestOnlineSpliceFrames()
void TestOnlineDeltaFeature()
void TestOnlineMfcc()
void TestOnlineAppendFeature()
void TestRecyclingVector()
void TestOnlineTransform()