WARNING, this component is deprecated in favor of TimeHeightConvolutionComponent, and will be deleted. More...
#include <nnet-combined-component.h>
Public Types | |
enum | TensorVectorizationType { kYzx = 0, kZyx = 1 } |
Public Member Functions | |
ConvolutionComponent () | |
ConvolutionComponent (const ConvolutionComponent &component) | |
ConvolutionComponent (const CuMatrixBase< BaseFloat > &filter_params, const CuVectorBase< BaseFloat > &bias_params, int32 input_x_dim, int32 input_y_dim, int32 input_z_dim, int32 filt_x_dim, int32 filt_y_dim, int32 filt_x_step, int32 filt_y_step, TensorVectorizationType input_vectorization, BaseFloat learning_rate) | |
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 > &, const CuMatrixBase< BaseFloat > &out_deriv, void *memo, Component *to_update_in, 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... | |
void | Update (const std::string &debug_info, const CuMatrixBase< BaseFloat > &in_value, const CuMatrixBase< BaseFloat > &out_deriv, const std::vector< CuSubMatrix< BaseFloat > *> &out_deriv_batch) |
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 | PerturbParams (BaseFloat stddev) |
This function is to be used in testing. More... | |
virtual BaseFloat | DotProduct (const UpdatableComponent &other) const |
Computes dot-product between parameters of two instances of a Component. More... | |
virtual int32 | NumParameters () const |
The following new virtual function returns the total dimension of the parameters in this class. More... | |
virtual void | Vectorize (VectorBase< BaseFloat > *params) const |
Turns the parameters into vector form. More... | |
virtual void | UnVectorize (const VectorBase< BaseFloat > ¶ms) |
Converts the parameters from vector form. More... | |
void | SetParams (const VectorBase< BaseFloat > &bias, const MatrixBase< BaseFloat > &filter) |
const CuVector< BaseFloat > & | BiasParams () const |
const CuMatrix< BaseFloat > & | LinearParams () const |
void | Init (int32 input_x_dim, int32 input_y_dim, int32 input_z_dim, int32 filt_x_dim, int32 filt_y_dim, int32 filt_x_step, int32 filt_y_step, int32 num_filters, TensorVectorizationType input_vectorization, BaseFloat param_stddev, BaseFloat bias_stddev) |
void | Init (int32 input_x_dim, int32 input_y_dim, int32 input_z_dim, int32 filt_x_dim, int32 filt_y_dim, int32 filt_x_step, int32 filt_y_step, TensorVectorizationType input_vectorization, std::string matrix_filename) |
void | Resize (int32 input_dim, int32 output_dim) |
void | Update (const std::string &debug_info, const CuMatrixBase< BaseFloat > &in_value, const CuMatrixBase< BaseFloat > &out_deriv) |
Public Member Functions inherited from UpdatableComponent | |
UpdatableComponent (const UpdatableComponent &other) | |
UpdatableComponent () | |
virtual | ~UpdatableComponent () |
virtual void | SetUnderlyingLearningRate (BaseFloat lrate) |
Sets the learning rate of gradient descent- gets multiplied by learning_rate_factor_. More... | |
virtual void | SetActualLearningRate (BaseFloat lrate) |
Sets the learning rate directly, bypassing learning_rate_factor_. More... | |
virtual void | SetAsGradient () |
Sets is_gradient_ to true and sets learning_rate_ to 1, ignoring learning_rate_factor_. More... | |
virtual BaseFloat | LearningRateFactor () |
virtual void | SetLearningRateFactor (BaseFloat lrate_factor) |
void | SetUpdatableConfigs (const UpdatableComponent &other) |
virtual void | FreezeNaturalGradient (bool freeze) |
freezes/unfreezes NaturalGradient updates, if applicable (to be overriden by components that use Natural Gradient). More... | |
BaseFloat | LearningRate () const |
Gets the learning rate to be used in gradient descent. More... | |
BaseFloat | MaxChange () const |
Returns the per-component max-change value, which is interpreted as the maximum change (in l2 norm) in parameters that is allowed per minibatch for this component. More... | |
void | SetMaxChange (BaseFloat max_change) |
BaseFloat | L2Regularization () const |
Returns the l2 regularization constant, which may be set in any updatable component (usually from the config file). More... | |
void | SetL2Regularization (BaseFloat a) |
Public Member Functions inherited from Component | |
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... | |
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 | 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 | 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 | ConsolidateMemory () |
This virtual function relates to memory management, and avoiding fragmentation. More... | |
Component () | |
virtual | ~Component () |
Private Member Functions | |
void | InputToInputPatches (const CuMatrixBase< BaseFloat > &in, CuMatrix< BaseFloat > *patches) const |
void | InderivPatchesToInderiv (const CuMatrix< BaseFloat > &in_deriv_patches, CuMatrixBase< BaseFloat > *in_deriv) const |
const ConvolutionComponent & | operator= (const ConvolutionComponent &other) |
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... | |
Protected Member Functions inherited from UpdatableComponent | |
void | InitLearningRatesFromConfig (ConfigLine *cfl) |
std::string | ReadUpdatableCommon (std::istream &is, bool binary) |
void | WriteUpdatableCommon (std::ostream &is, bool binary) const |
Protected Attributes inherited from UpdatableComponent | |
BaseFloat | learning_rate_ |
learning rate (typically 0.0..0.01) More... | |
BaseFloat | learning_rate_factor_ |
learning rate factor (normally 1.0, but can be set to another < value so that when < you call SetLearningRate(), that value will be scaled by this factor. More... | |
BaseFloat | l2_regularize_ |
L2 regularization constant. More... | |
bool | is_gradient_ |
True if this component is to be treated as a gradient rather than as parameters. More... | |
BaseFloat | max_change_ |
configuration value for imposing max-change More... | |
WARNING, this component is deprecated in favor of TimeHeightConvolutionComponent, and will be deleted.
ConvolutionalComponent implements 2d-convolution. It uses 3D filters on 3D inputs, but the 3D filters hop only over 2 dimensions as it has same size as the input along the 3rd dimension. Input : A matrix where each row is a vectorized 3D-tensor. The 3D tensor has dimensions x: (e.g. time) y: (e.g. frequency) z: (e.g. channels like features/delta/delta-delta)
The component supports input vectorizations of type zyx and yzx. The default vectorization type is zyx. e.g. for input vectorization of type zyx the input is vectorized by spanning axes z, y and x of the tensor in that order. Given 3d tensor A with sizes (2, 2, 2) along the three dimensions the zyx vectorized input looks like A(0,0,0) A(0,0,1) A(0,1,0) A(0,1,1) A(1,0,0) A(1,0,1) A(1,1,0) A(1,1,1)
Output : The output is also a 3D tensor vectorized in the zyx format. The channel axis (z) in the output corresponds to the output of different filters. The first channel corresponds to the first filter i.e., first row of the filter_params_ matrix.
Note: The component has to support yzx input vectorization as the binaries like add-deltas generate yz vectorized output. These input vectors are concatenated using the Append descriptor across time steps to form a yzx vectorized 3D tensor input. e.g. Append(Offset(input, -1), input, Offset(input, 1))
For information on the hyperparameters and parameters of this component see the variable declarations.
Propagation: ------------ Convolution operation consists of a dot-products between the filter tensor and input tensor patch, for various shifts of filter tensor along the x and y axes input tensor. (Note: there is no shift along z-axis as the filter and input tensor have same size along this axis).
For a particular shift (i,j) of the filter tensor along input tensor dimensions x and y, the elements of the input tensor which overlap with the filter form the input tensor patch. This patch is vectorized in zyx format. All the patches corresponding to various samples in the mini-batch are stacked into a matrix, where each row corresponds to one patch. Let this matrix be represented by X_{i,j}. The dot products with various filters are computed simultaneously by computing the matrix product with the filter_params_ matrix (W) Y_{i,j} = X_{i,j}*W^T. Each row of W corresponds to one filter 3D tensor vectorized in zyx format.
All the matrix products corresponding to various shifts (i,j) of the filter tensor are computed simultaneously using the AddMatMatBatched call of CuMatrixBase class.
BackPropagation: ---------------- Backpropagation to compute the input derivative ( X_{i,j}) consists of the a series of matrix products. {i,j} = {i,j}*W where {i,j} corresponds to the output derivative for a particular shift of the filter.
Once again these matrix products are computed simultaneously.
Update: ------- The weight gradient is computed as = {i,j} (X_{i,j}^T *{i,j})
Definition at line 114 of file nnet-combined-component.h.
Definition at line 34 of file nnet-combined-component.cc.
Referenced by ConvolutionComponent::Copy().
ConvolutionComponent | ( | const ConvolutionComponent & | component | ) |
Definition at line 41 of file nnet-combined-component.cc.
ConvolutionComponent | ( | const CuMatrixBase< BaseFloat > & | filter_params, |
const CuVectorBase< BaseFloat > & | bias_params, | ||
int32 | input_x_dim, | ||
int32 | input_y_dim, | ||
int32 | input_z_dim, | ||
int32 | filt_x_dim, | ||
int32 | filt_y_dim, | ||
int32 | filt_x_step, | ||
int32 | filt_y_step, | ||
TensorVectorizationType | input_vectorization, | ||
BaseFloat | learning_rate | ||
) |
Definition at line 55 of file nnet-combined-component.cc.
References CuVectorBase< Real >::Dim(), UpdatableComponent::is_gradient_, KALDI_ASSERT, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), and UpdatableComponent::SetUnderlyingLearningRate().
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 348 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filter_params_, and KALDI_ASSERT.
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
|
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 443 of file nnet-combined-component.cc.
References CuMatrixBase< Real >::ColRange(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, KALDI_ASSERT, kaldi::kNoTrans, kaldi::kSetZero, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), NVTX_RANGE, and ConvolutionComponent::Update().
Referenced by ConvolutionComponent::Properties(), LstmNonlinearityComponent::Properties(), and MaxpoolingComponent::Properties().
Definition at line 179 of file nnet-combined-component.h.
References ConvolutionComponent::bias_params_.
|
virtual |
Copies component (deep copy).
Implements Component.
Definition at line 654 of file nnet-combined-component.cc.
References ConvolutionComponent::ConvolutionComponent().
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
|
virtual |
Computes dot-product between parameters of two instances of a Component.
Can be used for computing parameter-norm of an UpdatableComponent.
Implements UpdatableComponent.
Definition at line 647 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filter_params_, kaldi::kTrans, kaldi::TraceMatMat(), and kaldi::VecVec().
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
|
private |
Definition at line 387 of file nnet-combined-component.cc.
References CuMatrixBase< Real >::AddCols(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, KALDI_ASSERT, ConvolutionComponent::kYzx, ConvolutionComponent::kZyx, CuMatrixBase< Real >::NumCols(), kaldi::nnet3::RearrangeIndexes(), kaldi::nnet3::YzxVectorIndex(), and kaldi::nnet3::ZyxVectorIndex().
Referenced by ConvolutionComponent::Backprop(), and MaxpoolingComponent::Copy().
|
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 UpdatableComponent.
Definition at line 147 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, UpdatableComponent::Info(), ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, and kaldi::nnet3::PrintParameterStats().
Referenced by MaxpoolingComponent::MaxpoolingComponent().
void Init | ( | int32 | input_x_dim, |
int32 | input_y_dim, | ||
int32 | input_z_dim, | ||
int32 | filt_x_dim, | ||
int32 | filt_y_dim, | ||
int32 | filt_x_step, | ||
int32 | filt_y_step, | ||
int32 | num_filters, | ||
TensorVectorizationType | input_vectorization, | ||
BaseFloat | param_stddev, | ||
BaseFloat | bias_stddev | ||
) |
Definition at line 94 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, and KALDI_ASSERT.
Referenced by ConvolutionComponent::InitFromConfig(), ConvolutionComponent::LinearParams(), and LstmNonlinearityComponent::Properties().
void Init | ( | int32 | input_x_dim, |
int32 | input_y_dim, | ||
int32 | input_z_dim, | ||
int32 | filt_x_dim, | ||
int32 | filt_y_dim, | ||
int32 | filt_x_step, | ||
int32 | filt_y_step, | ||
TensorVectorizationType | input_vectorization, | ||
std::string | matrix_filename | ||
) |
Definition at line 121 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, KALDI_ASSERT, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), CuMatrixBase< Real >::Range(), and kaldi::ReadKaldiObject().
|
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 165 of file nnet-combined-component.cc.
References ConfigLine::GetValue(), ConfigLine::HasUnusedValues(), ConvolutionComponent::Init(), UpdatableComponent::InitLearningRatesFromConfig(), KALDI_ERR, ConvolutionComponent::kYzx, ConvolutionComponent::kZyx, ConfigLine::UnusedValues(), and ConfigLine::WholeLine().
Referenced by MaxpoolingComponent::MaxpoolingComponent().
|
virtual |
Returns input-dimension of this component.
Implements Component.
Definition at line 81 of file nnet-combined-component.cc.
References ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, and ConvolutionComponent::input_z_dim_.
Referenced by MaxpoolingComponent::MaxpoolingComponent().
|
private |
Definition at line 245 of file nnet-combined-component.cc.
References CuMatrixBase< Real >::CopyCols(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, KALDI_ASSERT, ConvolutionComponent::kYzx, ConvolutionComponent::kZyx, CuMatrixBase< Real >::NumCols(), kaldi::nnet3::YzxVectorIndex(), and kaldi::nnet3::ZyxVectorIndex().
Referenced by MaxpoolingComponent::Copy(), ConvolutionComponent::Propagate(), and ConvolutionComponent::Update().
Definition at line 180 of file nnet-combined-component.h.
References ConvolutionComponent::filter_params_, ConvolutionComponent::Init(), ConvolutionComponent::Resize(), and ConvolutionComponent::Update().
|
virtual |
The following new virtual function returns the total dimension of the parameters in this class.
Reimplemented from UpdatableComponent.
Definition at line 676 of file nnet-combined-component.cc.
References ConvolutionComponent::filter_params_.
Referenced by ConvolutionComponent::Properties(), LstmNonlinearityComponent::Properties(), ConvolutionComponent::UnVectorize(), and ConvolutionComponent::Vectorize().
|
private |
|
virtual |
Returns output-dimension of this component.
Implements Component.
Definition at line 86 of file nnet-combined-component.cc.
References ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_x_dim_, and ConvolutionComponent::input_y_dim_.
Referenced by MaxpoolingComponent::MaxpoolingComponent().
|
virtual |
This function is to be used in testing.
It adds unit noise times "stddev" to the parameters of the component.
Implements UpdatableComponent.
Definition at line 659 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filter_params_, CuVectorBase< Real >::SetRandn(), and CuMatrixBase< Real >::SetRandn().
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
|
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 292 of file nnet-combined-component.cc.
References CuMatrixBase< Real >::AddVecToRows(), ConvolutionComponent::bias_params_, CuMatrixBase< Real >::ColRange(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::InputToInputPatches(), KALDI_ASSERT, kaldi::kNoTrans, kaldi::kTrans, kaldi::kUndefined, CuMatrixBase< Real >::NumCols(), and CuMatrixBase< Real >::NumRows().
Referenced by ConvolutionComponent::Properties(), LstmNonlinearityComponent::Properties(), and MaxpoolingComponent::Properties().
|
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 140 of file nnet-combined-component.h.
References ConvolutionComponent::Add(), ConvolutionComponent::Backprop(), ConvolutionComponent::Copy(), ConvolutionComponent::DotProduct(), kaldi::nnet3::kBackpropAdds, kaldi::nnet3::kBackpropNeedsInput, kaldi::nnet3::kPropagateAdds, kaldi::nnet3::kSimpleComponent, kaldi::nnet3::kUpdatableComponent, ConvolutionComponent::NumParameters(), ConvolutionComponent::PerturbParams(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Scale(), ConvolutionComponent::SetParams(), ConvolutionComponent::UnVectorize(), ConvolutionComponent::Update(), ConvolutionComponent::Vectorize(), and ConvolutionComponent::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 585 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, kaldi::nnet3::ExpectToken(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, UpdatableComponent::is_gradient_, KALDI_ASSERT, kaldi::ReadBasicType(), kaldi::ReadToken(), and UpdatableComponent::ReadUpdatableCommon().
Referenced by ConvolutionComponent::Properties(), LstmNonlinearityComponent::Properties(), and MaxpoolingComponent::Properties().
Referenced by ConvolutionComponent::LinearParams().
|
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 337 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, and ConvolutionComponent::filter_params_.
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
void SetParams | ( | const VectorBase< BaseFloat > & | bias, |
const MatrixBase< BaseFloat > & | filter | ||
) |
Definition at line 669 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filter_params_, and KALDI_ASSERT.
Referenced by ConvolutionComponent::Properties().
|
inlinevirtual |
Returns a string such as "SigmoidComponent", describing the type of the object.
Implements Component.
Definition at line 139 of file nnet-combined-component.h.
|
virtual |
Converts the parameters from vector form.
Reimplemented from UpdatableComponent.
Definition at line 686 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, VectorBase< Real >::Dim(), ConvolutionComponent::filter_params_, KALDI_ASSERT, ConvolutionComponent::NumParameters(), and VectorBase< Real >::Range().
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
void Update | ( | const std::string & | debug_info, |
const CuMatrixBase< BaseFloat > & | in_value, | ||
const CuMatrixBase< BaseFloat > & | out_deriv, | ||
const std::vector< CuSubMatrix< BaseFloat > *> & | out_deriv_batch | ||
) |
Definition at line 511 of file nnet-combined-component.cc.
References CuMatrixBase< Real >::AddMatBlocks(), CuVectorBase< Real >::AddRowSumMat(), ConvolutionComponent::bias_params_, CuMatrixBase< Real >::ColRange(), ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::InputToInputPatches(), KALDI_ASSERT, kaldi::kNoTrans, kaldi::kSetZero, kaldi::kTrans, kaldi::kUndefined, UpdatableComponent::learning_rate_, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), CuVector< Real >::Resize(), and CuMatrix< Real >::Resize().
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::LinearParams(), and ConvolutionComponent::Properties().
void Update | ( | const std::string & | debug_info, |
const CuMatrixBase< BaseFloat > & | in_value, | ||
const CuMatrixBase< BaseFloat > & | out_deriv | ||
) |
|
virtual |
Turns the parameters into vector form.
We put the vector form on the CPU, because in the kinds of situations where we do this, we'll tend to use too much memory for the GPU.
Reimplemented from UpdatableComponent.
Definition at line 680 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, VectorBase< Real >::Dim(), ConvolutionComponent::filter_params_, KALDI_ASSERT, ConvolutionComponent::NumParameters(), and VectorBase< Real >::Range().
Referenced by ConvolutionComponent::Properties(), and LstmNonlinearityComponent::Properties().
|
virtual |
Write component to stream.
Implements Component.
Definition at line 620 of file nnet-combined-component.cc.
References ConvolutionComponent::bias_params_, ConvolutionComponent::filt_x_dim_, ConvolutionComponent::filt_x_step_, ConvolutionComponent::filt_y_dim_, ConvolutionComponent::filt_y_step_, ConvolutionComponent::filter_params_, ConvolutionComponent::input_vectorization_, ConvolutionComponent::input_x_dim_, ConvolutionComponent::input_y_dim_, ConvolutionComponent::input_z_dim_, UpdatableComponent::is_gradient_, kaldi::WriteBasicType(), kaldi::WriteToken(), and UpdatableComponent::WriteUpdatableCommon().
Referenced by ConvolutionComponent::Properties(), LstmNonlinearityComponent::Properties(), and MaxpoolingComponent::Properties().
Definition at line 242 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Add(), ConvolutionComponent::BiasParams(), ConvolutionComponent::DotProduct(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::PerturbParams(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Scale(), ConvolutionComponent::SetParams(), ConvolutionComponent::UnVectorize(), ConvolutionComponent::Update(), ConvolutionComponent::Vectorize(), and ConvolutionComponent::Write().
|
private |
Definition at line 214 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
|
private |
Definition at line 221 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
|
private |
Definition at line 216 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
|
private |
Definition at line 225 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
Definition at line 234 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Add(), ConvolutionComponent::Backprop(), ConvolutionComponent::DotProduct(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::LinearParams(), ConvolutionComponent::NumParameters(), ConvolutionComponent::OutputDim(), ConvolutionComponent::PerturbParams(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Scale(), ConvolutionComponent::SetParams(), ConvolutionComponent::UnVectorize(), ConvolutionComponent::Update(), ConvolutionComponent::Vectorize(), and ConvolutionComponent::Write().
|
private |
Definition at line 231 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::Read(), and ConvolutionComponent::Write().
|
private |
Definition at line 204 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputDim(), MaxpoolingComponent::InputDim(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
|
private |
Definition at line 207 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::Backprop(), ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputDim(), MaxpoolingComponent::InputDim(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::OutputDim(), ConvolutionComponent::Propagate(), ConvolutionComponent::Read(), ConvolutionComponent::Update(), and ConvolutionComponent::Write().
|
private |
Definition at line 210 of file nnet-combined-component.h.
Referenced by ConvolutionComponent::InderivPatchesToInderiv(), ConvolutionComponent::Info(), ConvolutionComponent::Init(), ConvolutionComponent::InputDim(), MaxpoolingComponent::InputDim(), ConvolutionComponent::InputToInputPatches(), ConvolutionComponent::Read(), and ConvolutionComponent::Write().