#include <vector>
#include <map>
#include <algorithm>
#include "base/kaldi-common.h"
#include "util/stl-utils.h"
#include "util/const-integer-set.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:
|
| |
|
| typedef int32 | EventKeyType |
| | Things of type EventKeyType can take any value. More...
|
| |
| typedef int32 | EventValueType |
| | Given current code, things of type EventValueType should generally be nonnegative and in a reasonably small range (e.g. More...
|
| |
| typedef int32 | EventAnswerType |
| | As far as the event-map code itself is concerned, things of type EventAnswerType may take any value except kNoAnswer (== -1). More...
|
| |
| typedef std::vector< std::pair< EventKeyType, EventValueType > > | EventType |
| |