#include <map>
#include <string>
#include <vector>
#include "base/kaldi-common.h"
#include "itf/options-itf.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:
|
| |
|
| template<class C > |
| void | ReadConfigFromFile (const std::string &config_filename, C *c) |
| | This template is provided for convenience in reading config classes from files; this is not the standard way to read configuration options, but may occasionally be needed. More...
|
| |
| template<class C1 , class C2 > |
| void | ReadConfigsFromFile (const std::string &conf, C1 *c1, C2 *c2) |
| | This variant of the template ReadConfigFromFile is for if you need to read two config classes from the same file. More...
|
| |