SimpleSentenceAveragingComponent does not have nested network, it is intended to be used inside of a <ParallelComponent>. More...
#include <nnet-sentence-averaging-component.h>
Public Member Functions | |
SimpleSentenceAveragingComponent (int32 dim_in, int32 dim_out) | |
~SimpleSentenceAveragingComponent () | |
Component * | Copy () const |
Copy component (deep copy),. More... | |
ComponentType | GetType () const |
Get Type Identification of the component,. More... | |
void | InitData (std::istream &is) |
Virtual interface for initialization and I/O,. More... | |
void | ReadData (std::istream &is, bool binary) |
Reads the component content. More... | |
void | WriteData (std::ostream &os, bool binary) const |
Writes the component content. More... | |
std::string | Info () const |
Print some additional info (after <ComponentName> and the dims),. More... | |
std::string | InfoGradient () const |
Print some additional info about gradient (after <...> and dims),. More... | |
void | PropagateFnc (const CuMatrixBase< BaseFloat > &in, CuMatrixBase< BaseFloat > *out) |
Abstract interface for propagation/backpropagation. More... | |
void | BackpropagateFnc (const CuMatrixBase< BaseFloat > &in, const CuMatrixBase< BaseFloat > &out, const CuMatrixBase< BaseFloat > &out_diff, CuMatrixBase< BaseFloat > *in_diff) |
Backward pass transformation (to be implemented by descending class...) More... | |
Public Member Functions inherited from Component | |
Component (int32 input_dim, int32 output_dim) | |
Generic interface of a component,. More... | |
virtual | ~Component () |
virtual bool | IsUpdatable () const |
Check if componeny has 'Updatable' interface (trainable components),. More... | |
virtual bool | IsMultistream () const |
Check if component has 'Recurrent' interface (trainable and recurrent),. More... | |
int32 | InputDim () const |
Get the dimension of the input,. More... | |
int32 | OutputDim () const |
Get the dimension of the output,. More... | |
void | Propagate (const CuMatrixBase< BaseFloat > &in, CuMatrix< BaseFloat > *out) |
Perform forward-pass propagation 'in' -> 'out',. More... | |
void | Backpropagate (const CuMatrixBase< BaseFloat > &in, const CuMatrixBase< BaseFloat > &out, const CuMatrixBase< BaseFloat > &out_diff, CuMatrix< BaseFloat > *in_diff) |
Perform backward-pass propagation 'out_diff' -> 'in_diff'. More... | |
void | Write (std::ostream &os, bool binary) const |
Write the component to a stream,. More... | |
Private Attributes | |
CuVector< BaseFloat > | average_row_ |
Auxiliary buffer for forward propagation (for average vector),. More... | |
CuVector< BaseFloat > | average_diff_ |
Auxiliary buffer for back-propagation (for average vector),. More... | |
BaseFloat | gradient_boost_ |
Scalar applied on gradient in backpropagation,. More... | |
BaseFloat | shrinkage_ |
Number of 'imaginary' zero-vectors in the average (shrinks the average vector for short sentences),. More... | |
bool | only_summing_ |
Removes normalization term from arithmetic mean (when true). More... | |
Additional Inherited Members | |
Public Types inherited from Component | |
enum | ComponentType { kUnknown = 0x0, kUpdatableComponent = 0x0100, kAffineTransform, kLinearTransform, kConvolutionalComponent, kLstmProjected, kBlstmProjected, kRecurrentComponent, kActivationFunction = 0x0200, kSoftmax, kHiddenSoftmax, kBlockSoftmax, kSigmoid, kTanh, kParametricRelu, kDropout, kLengthNormComponent, kTranform = 0x0400, kRbm, kSplice, kCopy, kTranspose, kBlockLinearity, kAddShift, kRescale, kKlHmm = 0x0800, kSentenceAveragingComponent, kSimpleSentenceAveragingComponent, kAveragePoolingComponent, kMaxPoolingComponent, kFramePoolingComponent, kParallelComponent, kMultiBasisComponent } |
Component type identification mechanism,. More... | |
Static Public Member Functions inherited from Component | |
static const char * | TypeToMarker (ComponentType t) |
Converts component type to marker,. More... | |
static ComponentType | MarkerToType (const std::string &s) |
Converts marker to component type (case insensitive),. More... | |
static Component * | Init (const std::string &conf_line) |
Initialize component from a line in config file,. More... | |
static Component * | Read (std::istream &is, bool binary) |
Read the component from a stream (static method),. More... | |
Static Public Attributes inherited from Component | |
static const struct key_value | kMarkerMap [] |
The table with pairs of Component types and markers (defined in nnet-component.cc),. More... | |
Protected Attributes inherited from Component | |
int32 | input_dim_ |
Data members,. More... | |
int32 | output_dim_ |
Dimension of the output of the Component,. More... | |
SimpleSentenceAveragingComponent does not have nested network, it is intended to be used inside of a <ParallelComponent>.
For training use 'nnet-train-perutt'.
The sentence-averaging typically leads to small gradients, so we boost it 100x by default (boost = multiply, it's equivalent to applying learning-rate factor).
Definition at line 42 of file nnet-sentence-averaging-component.h.
|
inline |
Definition at line 44 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::Copy().
|
inline |
Definition at line 51 of file nnet-sentence-averaging-component.h.
|
inlinevirtual |
Backward pass transformation (to be implemented by descending class...)
Implements Component.
Definition at line 137 of file nnet-sentence-averaging-component.h.
References CuMatrixBase< Real >::AddVecToRows(), SimpleSentenceAveragingComponent::average_diff_, SimpleSentenceAveragingComponent::gradient_boost_, CuMatrixBase< Real >::NumRows(), SimpleSentenceAveragingComponent::only_summing_, Component::OutputDim(), and SimpleSentenceAveragingComponent::shrinkage_.
|
inlinevirtual |
Copy component (deep copy),.
Implements Component.
Definition at line 54 of file nnet-sentence-averaging-component.h.
References SimpleSentenceAveragingComponent::SimpleSentenceAveragingComponent().
|
inlinevirtual |
Get Type Identification of the component,.
Implements Component.
Definition at line 58 of file nnet-sentence-averaging-component.h.
References Component::kSimpleSentenceAveragingComponent.
|
inlinevirtual |
Print some additional info (after <ComponentName> and the dims),.
Reimplemented from Component.
Definition at line 115 of file nnet-sentence-averaging-component.h.
References SimpleSentenceAveragingComponent::gradient_boost_, SimpleSentenceAveragingComponent::only_summing_, SimpleSentenceAveragingComponent::shrinkage_, and kaldi::nnet1::ToString().
Referenced by SimpleSentenceAveragingComponent::InfoGradient().
|
inlinevirtual |
Print some additional info about gradient (after <...> and dims),.
Reimplemented from Component.
Definition at line 120 of file nnet-sentence-averaging-component.h.
References SimpleSentenceAveragingComponent::Info().
|
inlinevirtual |
Virtual interface for initialization and I/O,.
Initialize internal data of a component
Reimplemented from Component.
Definition at line 62 of file nnet-sentence-averaging-component.h.
References SimpleSentenceAveragingComponent::gradient_boost_, KALDI_ERR, SimpleSentenceAveragingComponent::only_summing_, kaldi::ReadBasicType(), kaldi::ReadToken(), and SimpleSentenceAveragingComponent::shrinkage_.
|
inlinevirtual |
Abstract interface for propagation/backpropagation.
Forward pass transformation (to be implemented by descending class...)
Implements Component.
Definition at line 124 of file nnet-sentence-averaging-component.h.
References CuMatrixBase< Real >::AddVecToRows(), SimpleSentenceAveragingComponent::average_row_, Component::InputDim(), CuMatrixBase< Real >::NumRows(), SimpleSentenceAveragingComponent::only_summing_, and SimpleSentenceAveragingComponent::shrinkage_.
|
inlinevirtual |
Reads the component content.
Reimplemented from Component.
Definition at line 75 of file nnet-sentence-averaging-component.h.
References kaldi::ExpectToken(), SimpleSentenceAveragingComponent::gradient_boost_, KALDI_WARN, SimpleSentenceAveragingComponent::only_summing_, kaldi::Peek(), kaldi::PeekToken(), kaldi::ReadBasicType(), and SimpleSentenceAveragingComponent::shrinkage_.
|
inlinevirtual |
Writes the component content.
Reimplemented from Component.
Definition at line 106 of file nnet-sentence-averaging-component.h.
References SimpleSentenceAveragingComponent::gradient_boost_, SimpleSentenceAveragingComponent::only_summing_, SimpleSentenceAveragingComponent::shrinkage_, kaldi::WriteBasicType(), and kaldi::WriteToken().
Auxiliary buffer for back-propagation (for average vector),.
Definition at line 165 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::BackpropagateFnc().
Auxiliary buffer for forward propagation (for average vector),.
Definition at line 162 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::PropagateFnc().
|
private |
Scalar applied on gradient in backpropagation,.
Definition at line 168 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::BackpropagateFnc(), SimpleSentenceAveragingComponent::Info(), SimpleSentenceAveragingComponent::InitData(), SimpleSentenceAveragingComponent::ReadData(), and SimpleSentenceAveragingComponent::WriteData().
|
private |
Removes normalization term from arithmetic mean (when true).
Definition at line 175 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::BackpropagateFnc(), SimpleSentenceAveragingComponent::Info(), SimpleSentenceAveragingComponent::InitData(), SimpleSentenceAveragingComponent::PropagateFnc(), SimpleSentenceAveragingComponent::ReadData(), and SimpleSentenceAveragingComponent::WriteData().
|
private |
Number of 'imaginary' zero-vectors in the average (shrinks the average vector for short sentences),.
Definition at line 172 of file nnet-sentence-averaging-component.h.
Referenced by SimpleSentenceAveragingComponent::BackpropagateFnc(), SimpleSentenceAveragingComponent::Info(), SimpleSentenceAveragingComponent::InitData(), SimpleSentenceAveragingComponent::PropagateFnc(), SimpleSentenceAveragingComponent::ReadData(), and SimpleSentenceAveragingComponent::WriteData().