#include <string>
#include <vector>
#include "util/kaldi-io.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:
|
|
|
bool | WriteIntegerVectorSimple (const std::string &wxfilename, const std::vector< int32 > &v) |
| WriteToList attempts to write this list of integers, one per line, to the given file, in text format. More...
|
|
bool | ReadIntegerVectorSimple (const std::string &rxfilename, std::vector< int32 > *v) |
| ReadFromList attempts to read this list of integers, one per line, from the given file, in text format. More...
|
|
bool | WriteIntegerVectorVectorSimple (const std::string &wxfilename, const std::vector< std::vector< int32 > > &list) |
|
bool | ReadIntegerVectorVectorSimple (const std::string &rxfilename, std::vector< std::vector< int32 > > *list) |
|