#include "util/hash-list.h"
#include <map>
#include <cstdlib>
#include <iostream>
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:
|
|
◆ main()
Definition at line 96 of file hash-list-test.cc.
References rnnlm::i.
97 using namespace kaldi;
98 for (
size_t i = 0;
i < 3;
i++) {
99 TestHashList<int, unsigned int>();
100 TestHashList<unsigned int, int>();
101 TestHashList<int16, int32>();
102 TestHashList<int16, int32>();
103 TestHashList<char, unsigned char>();
104 TestHashList<unsigned char, int>();
106 std::cout <<
"Test OK.\n";
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...