#include <iostream>
#include "nnet3/nnet-common.h"
#include "nnet3/nnet-parse.h"
#include "base/kaldi-error.h"
Go to the source code of this file.
Classes | |
class | ComponentPrecomputedIndexes |
class | Component |
Abstract base-class for neural-net components. More... | |
class | RandomComponent |
class | UpdatableComponent |
Class UpdatableComponent is a Component which has trainable parameters; it extends the interface of Component. More... | |
class | NonlinearComponent |
Namespaces | |
kaldi | |
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference: | |
kaldi::nnet3 | |
Enumerations | |
enum | ComponentProperties { kSimpleComponent = 0x001, kUpdatableComponent = 0x002, kPropagateInPlace = 0x004, kPropagateAdds = 0x008, kReordersIndexes = 0x010, kBackpropAdds = 0x020, kBackpropNeedsInput = 0x040, kBackpropNeedsOutput = 0x080, kBackpropInPlace = 0x100, kStoresStats = 0x200, kInputContiguous = 0x400, kOutputContiguous = 0x800, kUsesMemo = 0x1000, kRandomComponent = 0x2000 } |