#include <nnet-normalize-component.h>
Classes | |
struct | Memo |
Public Member Functions | |
BatchNormComponent () | |
void | SetTestMode (bool test_mode) |
BatchNormComponent (const BatchNormComponent &other) | |
virtual int32 | InputDim () const |
Returns input-dimension of this component. More... | |
virtual int32 | OutputDim () const |
Returns output-dimension of this component. More... | |
virtual std::string | Info () const |
Returns some text-form information about this component, for diagnostics. More... | |
virtual void | InitFromConfig (ConfigLine *cfl) |
Initialize, from a ConfigLine object. More... | |
virtual std::string | Type () const |
Returns a string such as "SigmoidComponent", describing the type of the object. More... | |
virtual int32 | Properties () const |
Return bitmask of the component's properties. More... | |
virtual void * | Propagate (const ComponentPrecomputedIndexes *indexes, const CuMatrixBase< BaseFloat > &in, CuMatrixBase< BaseFloat > *out) const |
Propagate function. More... | |
virtual void | Backprop (const std::string &debug_info, const ComponentPrecomputedIndexes *indexes, const CuMatrixBase< BaseFloat > &in_value, const CuMatrixBase< BaseFloat > &out_value, const CuMatrixBase< BaseFloat > &out_deriv, void *memo, Component *, CuMatrixBase< BaseFloat > *in_deriv) const |
Backprop function; depending on which of the arguments 'to_update' and 'in_deriv' are non-NULL, this can compute input-data derivatives and/or perform model update. More... | |
virtual void | Read (std::istream &is, bool binary) |
Read function (used after we know the type of the Component); accepts input that is missing the token that describes the component type, in case it has already been consumed. More... | |
virtual void | Write (std::ostream &os, bool binary) const |
Write component to stream. More... | |
virtual Component * | Copy () const |
Copies component (deep copy). More... | |
virtual void | Scale (BaseFloat scale) |
This virtual function when called on – an UpdatableComponent scales the parameters by "scale" when called by an UpdatableComponent. More... | |
virtual void | Add (BaseFloat alpha, const Component &other) |
This virtual function when called by – an UpdatableComponent adds the parameters of another updatable component, times some constant, to the current parameters. More... | |
virtual void | ZeroStats () |
Components that provide an implementation of StoreStats should also provide an implementation of ZeroStats(), to set those stats to zero. More... | |
virtual void | DeleteMemo (void *memo) const |
This virtual function only needs to be overwritten by Components that return a non-NULL memo from their Propagate() function. More... | |
virtual void | StoreStats (const CuMatrixBase< BaseFloat > &in_value, const CuMatrixBase< BaseFloat > &out_value, void *memo) |
This function may store stats on average activation values, and for some component types, the average value of the derivative of the nonlinearity. More... | |
const CuVector< BaseFloat > & | Offset () const |
const CuVector< BaseFloat > & | Scale () const |
Public Member Functions inherited from Component | |
virtual void | GetInputIndexes (const MiscComputationInfo &misc_info, const Index &output_index, std::vector< Index > *desired_indexes) const |
This function only does something interesting for non-simple Components. More... | |
virtual bool | IsComputable (const MiscComputationInfo &misc_info, const Index &output_index, const IndexSet &input_index_set, std::vector< Index > *used_inputs) const |
This function only does something interesting for non-simple Components, and it exists to make it possible to manage optionally-required inputs. More... | |
virtual void | ReorderIndexes (std::vector< Index > *input_indexes, std::vector< Index > *output_indexes) const |
This function only does something interesting for non-simple Components. More... | |
virtual ComponentPrecomputedIndexes * | PrecomputeIndexes (const MiscComputationInfo &misc_info, const std::vector< Index > &input_indexes, const std::vector< Index > &output_indexes, bool need_backprop) const |
This function must return NULL for simple Components. More... | |
virtual void | ConsolidateMemory () |
This virtual function relates to memory management, and avoiding fragmentation. More... | |
Component () | |
virtual | ~Component () |
Private Member Functions | |
void | Check () const |
void | ComputeDerived () |
Static Private Member Functions | |
static void | ComputeOffsetAndScale (double count, BaseFloat epsilon, const Vector< double > &stats_sum, const Vector< double > &stats_sumsq, Vector< BaseFloat > *offset, Vector< BaseFloat > *scale) |
Private Attributes | |
int32 | dim_ |
int32 | block_dim_ |
BaseFloat | epsilon_ |
BaseFloat | target_rms_ |
bool | test_mode_ |
double | count_ |
CuVector< double > | stats_sum_ |
CuVector< double > | stats_sumsq_ |
CuVector< BaseFloat > | offset_ |
CuVector< BaseFloat > | scale_ |
Additional Inherited Members | |
Static Public Member Functions inherited from Component | |
static Component * | ReadNew (std::istream &is, bool binary) |
Read component from stream (works out its type). Dies on error. More... | |
static Component * | NewComponentOfType (const std::string &type) |
Returns a new Component of the given type e.g. More... | |
Definition at line 159 of file nnet-normalize-component.h.
|
inline |
Definition at line 162 of file nnet-normalize-component.h.
BatchNormComponent | ( | const BatchNormComponent & | other | ) |
Definition at line 259 of file nnet-normalize-component.cc.
References BatchNormComponent::Check(), and BatchNormComponent::ComputeDerived().
This virtual function when called by – an UpdatableComponent adds the parameters of another updatable component, times some constant, to the current parameters.
– a NonlinearComponent (or another component that stores stats, like BatchNormComponent)– it relates to adding stats. Otherwise it will normally do nothing.
Reimplemented from Component.
Definition at line 657 of file nnet-normalize-component.cc.
References CuVectorBase< Real >::AddVec(), BatchNormComponent::ComputeDerived(), BatchNormComponent::count_, BatchNormComponent::stats_sum_, and BatchNormComponent::stats_sumsq_.
|
virtual |
Backprop function; depending on which of the arguments 'to_update' and 'in_deriv' are non-NULL, this can compute input-data derivatives and/or perform model update.
[in] | debug_info | The component name, to be printed out in any warning messages. |
[in] | indexes | A pointer to some information output by this class's PrecomputeIndexes function (will be NULL for simple components, i.e. those that don't do things like splicing). |
[in] | in_value | The matrix that was given as input to the Propagate function. Will be ignored (and may be empty) if Properties()&kBackpropNeedsInput == 0. |
[in] | out_value | The matrix that was output from the Propagate function. Will be ignored (and may be empty) if Properties()&kBackpropNeedsOutput == 0 |
[in] | out_deriv | The derivative at the output of this component. |
[in] | memo | This will normally be NULL, but for component types that set the flag kUsesMemo, this will be the return value of the Propagate() function that corresponds to this Backprop() function. Ownership of any pointers is not transferred to the Backprop function; DeleteMemo() will be called to delete it. |
[out] | to_update | If model update is desired, the Component to be updated, else NULL. Does not have to be identical to this. If supplied, you can assume that to_update->Properties() & kUpdatableComponent is nonzero. |
[out] | in_deriv | The derivative at the input of this component, if needed (else NULL). If Properties()&kBackpropInPlace, may be the same matrix as out_deriv. If Properties()&kBackpropAdds, this is added to by the Backprop routine, else it is set. The component code chooses which mode to work in, based on convenience. |
Implements Component.
Definition at line 467 of file nnet-normalize-component.cc.
References CuMatrixBase< Real >::AddMatDiagVec(), CuMatrixBase< Real >::AddVecToRows(), BatchNormComponent::block_dim_, CuMatrixBase< Real >::CopyFromMat(), CuMatrixBase< Real >::Data(), BatchNormComponent::dim_, KALDI_ASSERT, kaldi::kNoTrans, kaldi::kTrans, BatchNormComponent::Memo::mean_uvar_scale, CuMatrixBase< Real >::MulColsVec(), BatchNormComponent::Memo::num_frames, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), NVTX_RANGE, BatchNormComponent::offset_, kaldi::SameDim(), BatchNormComponent::scale_, CuMatrixBase< Real >::Stride(), BatchNormComponent::target_rms_, and BatchNormComponent::test_mode_.
|
private |
Definition at line 254 of file nnet-normalize-component.cc.
References NormalizeComponent::block_dim_, KALDI_ASSERT, and NormalizeComponent::target_rms_.
Referenced by BatchNormComponent::BatchNormComponent(), BatchNormComponent::Read(), and BatchNormComponent::Write().
|
private |
Definition at line 209 of file nnet-normalize-component.cc.
References NormalizeComponent::block_dim_, KALDI_WARN, and NormalizeComponent::target_rms_.
Referenced by BatchNormComponent::Add(), BatchNormComponent::BatchNormComponent(), BatchNormComponent::InitFromConfig(), and BatchNormComponent::Read().
|
staticprivate |
|
inlinevirtual |
Copies component (deep copy).
Implements Component.
Definition at line 209 of file nnet-normalize-component.h.
References Component::Add(), Component::Scale(), and Component::ZeroStats().
|
inlinevirtual |
This virtual function only needs to be overwritten by Components that return a non-NULL memo from their Propagate() function.
It's called by NnetComputer in cases where Propagate returns a memo but there will be no backprop to consume it.
Reimplemented from Component.
Definition at line 216 of file nnet-normalize-component.h.
References Component::StoreStats().
|
virtual |
Returns some text-form information about this component, for diagnostics.
Starts with the type of the component. E.g. "SigmoidComponent dim=900", although most components will have much more info.
Reimplemented from Component.
Definition at line 269 of file nnet-normalize-component.cc.
References VectorBase< Real >::AddVecVec(), VectorBase< Real >::ApplyFloor(), VectorBase< Real >::ApplyPow(), BatchNormComponent::block_dim_, BatchNormComponent::count_, BatchNormComponent::dim_, BatchNormComponent::epsilon_, VectorBase< Real >::Scale(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, kaldi::nnet3::SummarizeVector(), BatchNormComponent::target_rms_, BatchNormComponent::test_mode_, and BatchNormComponent::Type().
|
virtual |
Initialize, from a ConfigLine object.
[in] | cfl | A ConfigLine containing any parameters that are needed for initialization. For example: "dim=100 param-stddev=0.1" |
Implements Component.
Definition at line 289 of file nnet-normalize-component.cc.
References BatchNormComponent::block_dim_, BatchNormComponent::ComputeDerived(), BatchNormComponent::count_, BatchNormComponent::dim_, BatchNormComponent::epsilon_, ConfigLine::GetValue(), ConfigLine::HasUnusedValues(), KALDI_ERR, CuVector< Real >::Resize(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, BatchNormComponent::target_rms_, BatchNormComponent::test_mode_, and ConfigLine::UnusedValues().
|
inlinevirtual |
Returns input-dimension of this component.
Implements Component.
Definition at line 176 of file nnet-normalize-component.h.
Definition at line 224 of file nnet-normalize-component.h.
Referenced by ModelCollapser::CollapseComponentsBatchnorm().
|
inlinevirtual |
Returns output-dimension of this component.
Implements Component.
Definition at line 177 of file nnet-normalize-component.h.
References NormalizeComponent::Info(), and NormalizeComponent::InitFromConfig().
|
virtual |
Propagate function.
[in] | indexes | A pointer to some information output by this class's PrecomputeIndexes function (will be NULL for simple components, i.e. those that don't do things like splicing). |
[in] | in | The input to this component. Num-columns == InputDim(). |
[out] | out | The output of this component. Num-columns == OutputDim(). Note: output of this component will be added to the initial value of "out" if Properties()&kPropagateAdds != 0; otherwise the output will be set and the initial value ignored. Each Component chooses whether it is more convenient implementation-wise to add or set, and the calling code has to deal with it. |
Implements Component.
Definition at line 401 of file nnet-normalize-component.cc.
References CuVectorBase< Real >::Add(), CuMatrixBase< Real >::AddVecToRows(), CuVectorBase< Real >::AddVecVec(), CuVectorBase< Real >::ApplyFloor(), CuVectorBase< Real >::ApplyPow(), BatchNormComponent::block_dim_, CuMatrixBase< Real >::CopyFromMat(), CuVectorBase< Real >::CopyFromVec(), BatchNormComponent::count_, CuMatrixBase< Real >::Data(), BatchNormComponent::dim_, BatchNormComponent::epsilon_, KALDI_ASSERT, KALDI_ERR, kaldi::kTrans, BatchNormComponent::Memo::mean_uvar_scale, CuMatrixBase< Real >::MulColsVec(), BatchNormComponent::Memo::num_frames, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), BatchNormComponent::offset_, kaldi::SameDim(), BatchNormComponent::scale_, CuMatrixBase< Real >::Stride(), BatchNormComponent::target_rms_, and BatchNormComponent::test_mode_.
|
inlinevirtual |
Return bitmask of the component's properties.
These properties depend only on the component's type. See enum ComponentProperties.
Implements Component.
Definition at line 182 of file nnet-normalize-component.h.
References NormalizeComponent::Backprop(), NormalizeComponent::block_dim_, kaldi::nnet3::kBackpropInPlace, kaldi::nnet3::kBackpropNeedsOutput, kaldi::nnet3::kInputContiguous, kaldi::nnet3::kOutputContiguous, kaldi::nnet3::kPropagateInPlace, kaldi::nnet3::kSimpleComponent, kaldi::nnet3::kStoresStats, kaldi::nnet3::kUsesMemo, NormalizeComponent::Propagate(), NormalizeComponent::Read(), and NormalizeComponent::Write().
|
virtual |
Read function (used after we know the type of the Component); accepts input that is missing the token that describes the component type, in case it has already been consumed.
Implements Component.
Definition at line 591 of file nnet-normalize-component.cc.
References CuVectorBase< Real >::AddVecVec(), BatchNormComponent::block_dim_, BatchNormComponent::Check(), BatchNormComponent::ComputeDerived(), BatchNormComponent::count_, BatchNormComponent::dim_, BatchNormComponent::epsilon_, kaldi::ExpectOneOrTwoTokens(), kaldi::nnet3::ExpectToken(), CuVector< Real >::Read(), kaldi::ReadBasicType(), CuVectorBase< Real >::Scale(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, BatchNormComponent::target_rms_, and BatchNormComponent::test_mode_.
|
virtual |
This virtual function when called on – an UpdatableComponent scales the parameters by "scale" when called by an UpdatableComponent.
– a Nonlinear component (or another component that stores stats, like BatchNormComponent)– it relates to scaling activation stats, not parameters. Otherwise it will normally do nothing.
Reimplemented from Component.
Definition at line 644 of file nnet-normalize-component.cc.
References BatchNormComponent::count_, CuVectorBase< Real >::Scale(), CuVectorBase< Real >::SetZero(), BatchNormComponent::stats_sum_, and BatchNormComponent::stats_sumsq_.
Referenced by ModelCollapser::CollapseComponentsBatchnorm(), and kaldi::nnet3::ScaleBatchnormStats().
Definition at line 225 of file nnet-normalize-component.h.
void SetTestMode | ( | bool | test_mode | ) |
Definition at line 249 of file nnet-normalize-component.cc.
Referenced by kaldi::nnet3::SetBatchnormTestMode().
|
virtual |
This function may store stats on average activation values, and for some component types, the average value of the derivative of the nonlinearity.
It only does something for those components that have nonzero Properties()&kStoresStats.
[in] | in_value | The input to the Propagate() function. Note: if the component sets the flag kPropagateInPlace, this should not be used; the empty matrix will be provided here if in-place propagation was used. |
[in] | out_value | The output of the Propagate() function. |
[in] | memo | The 'memo' returned by the Propagate() function; this will usually be NULL. |
Reimplemented from Component.
Definition at line 551 of file nnet-normalize-component.cc.
References CuVectorBase< Real >::AddVec(), BatchNormComponent::block_dim_, BatchNormComponent::count_, CuMatrixBase< Real >::Data(), CuVectorBase< Real >::Dim(), BatchNormComponent::dim_, KALDI_ASSERT, BatchNormComponent::Memo::mean_uvar_scale, BatchNormComponent::Memo::num_frames, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), CuVector< Real >::Resize(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, CuMatrixBase< Real >::Stride(), and BatchNormComponent::test_mode_.
|
inlinevirtual |
Returns a string such as "SigmoidComponent", describing the type of the object.
Implements Component.
Definition at line 181 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Info().
|
virtual |
Write component to stream.
Implements Component.
Definition at line 616 of file nnet-normalize-component.cc.
References CuVectorBase< Real >::AddVecVec(), BatchNormComponent::block_dim_, BatchNormComponent::Check(), BatchNormComponent::count_, BatchNormComponent::dim_, BatchNormComponent::epsilon_, CuVectorBase< Real >::Scale(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, BatchNormComponent::target_rms_, BatchNormComponent::test_mode_, CuVector< Real >::Write(), kaldi::WriteBasicType(), and kaldi::WriteToken().
|
virtual |
Components that provide an implementation of StoreStats should also provide an implementation of ZeroStats(), to set those stats to zero.
Other components that store other types of statistics (e.g. regarding gradient clipping) should implement ZeroStats() also.
Reimplemented from Component.
Definition at line 668 of file nnet-normalize-component.cc.
References BatchNormComponent::count_, CuVectorBase< Real >::SetZero(), BatchNormComponent::stats_sum_, BatchNormComponent::stats_sumsq_, and BatchNormComponent::test_mode_.
|
private |
Definition at line 261 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), BatchNormComponent::StoreStats(), and BatchNormComponent::Write().
|
private |
Definition at line 282 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Add(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), BatchNormComponent::Scale(), BatchNormComponent::StoreStats(), BatchNormComponent::Write(), and BatchNormComponent::ZeroStats().
|
private |
Definition at line 254 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), BatchNormComponent::StoreStats(), and BatchNormComponent::Write().
|
private |
Definition at line 265 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), and BatchNormComponent::Write().
Definition at line 293 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), and BatchNormComponent::Propagate().
Definition at line 294 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), and BatchNormComponent::Propagate().
|
private |
Definition at line 284 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Add(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Read(), BatchNormComponent::Scale(), BatchNormComponent::StoreStats(), BatchNormComponent::Write(), and BatchNormComponent::ZeroStats().
|
private |
Definition at line 286 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Add(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Read(), BatchNormComponent::Scale(), BatchNormComponent::StoreStats(), BatchNormComponent::Write(), and BatchNormComponent::ZeroStats().
|
private |
Definition at line 270 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), and BatchNormComponent::Write().
|
private |
Definition at line 278 of file nnet-normalize-component.h.
Referenced by BatchNormComponent::Backprop(), BatchNormComponent::Info(), BatchNormComponent::InitFromConfig(), BatchNormComponent::Propagate(), BatchNormComponent::Read(), BatchNormComponent::StoreStats(), BatchNormComponent::Write(), and BatchNormComponent::ZeroStats().