#include <nnet-general-component.h>
Public Member Functions | |
StatisticsPoolingComponent () | |
StatisticsPoolingComponent (const StatisticsPoolingComponent &other) | |
virtual int32 | InputDim () const |
Returns input-dimension of this component. More... | |
virtual int32 | OutputDim () const |
Returns output-dimension of this component. 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 | 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... | |
void | SetRequireDirectInput (bool b) |
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 std::string | Info () const |
Returns some text-form information about this component, for diagnostics. 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 | 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 | Check () const |
StatisticsPoolingComponent & | operator= (const StatisticsPoolingComponent &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... | |
Definition at line 337 of file nnet-general-component.h.
Definition at line 575 of file nnet-general-component.cc.
StatisticsPoolingComponent | ( | const StatisticsPoolingComponent & | other | ) |
Definition at line 581 of file nnet-general-component.cc.
References StatisticsPoolingComponent::Check().
|
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 826 of file nnet-general-component.cc.
References CuMatrixBase< Real >::AddRowRanges(), CuVectorBase< Real >::ApplyExp(), StatisticsPoolingComponentPrecomputedIndexes::backward_indexes, CuMatrixBase< Real >::ColRange(), CuVectorBase< Real >::CopyColFromMat(), CuVectorBase< Real >::Data(), CuMatrixBase< Real >::DivRowsVec(), StatisticsPoolingComponentPrecomputedIndexes::forward_indexes, StatisticsPoolingComponent::input_dim_, KALDI_ASSERT, kaldi::kUndefined, StatisticsPoolingComponent::num_log_count_features_, CuMatrixBase< Real >::NumRows(), NVTX_RANGE, StatisticsPoolingComponent::output_stddevs_, and CuVectorBase< Real >::SetZero().
|
private |
Definition at line 592 of file nnet-general-component.cc.
References StatisticsPoolingComponent::input_dim_, StatisticsPoolingComponent::input_period_, KALDI_ASSERT, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::output_stddevs_, StatisticsPoolingComponent::right_context_, and StatisticsPoolingComponent::variance_floor_.
Referenced by StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::StatisticsPoolingComponent().
|
inlinevirtual |
Copies component (deep copy).
Implements Component.
Definition at line 374 of file nnet-general-component.h.
References DistributeComponent::GetInputIndexes(), DistributeComponent::IsComputable(), DistributeComponent::PrecomputeIndexes(), and Component::ReorderIndexes().
|
virtual |
This function only does something interesting for non-simple Components.
For a given index at the output of the component, tells us what indexes are required at its input (note: "required" encompasses also optionally-required things; it will enumerate all things that we'd like to have). See also IsComputable().
[in] | misc_info | This argument is supplied to handle things that the framework can't very easily supply: information like which time indexes are needed for AggregateComponent, which time-indexes are available at the input of a recurrent network, and so on. We will add members to misc_info as needed. |
[in] | output_index | The Index at the output of the component, for which we are requesting the list of indexes at the component's input. |
[out] | desired_indexes | A list of indexes that are desired at the input. are to be written to here. By "desired" we mean required or optionally-required. |
The default implementation of this function is suitable for any SimpleComponent; it just copies the output_index to a single identical element in input_indexes.
Reimplemented from Component.
Definition at line 654 of file nnet-general-component.cc.
References StatisticsPoolingComponent::input_period_, KALDI_ASSERT, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::right_context_, and Index::t.
|
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 555 of file nnet-general-component.cc.
References StatisticsExtractionComponent::Check(), ConfigLine::GetValue(), ConfigLine::HasUnusedValues(), StatisticsExtractionComponent::input_dim_, StatisticsExtractionComponent::input_period_, KALDI_ERR, StatisticsExtractionComponent::Type(), ConfigLine::UnusedValues(), and ConfigLine::WholeLine().
|
inlinevirtual |
Returns input-dimension of this component.
Implements Component.
Definition at line 345 of file nnet-general-component.h.
References DistributeComponent::input_dim_.
|
virtual |
This function only does something interesting for non-simple Components, and it exists to make it possible to manage optionally-required inputs.
It tells the user whether a given output index is computable from a given set of input indexes, and if so, says which input indexes will be used in the computation.
Implementations of this function are required to have the property that adding an element to "input_index_set" can only ever change IsComputable from false to true, never vice versa.
[in] | misc_info | Some information specific to the computation, such as minimum and maximum times for certain components to do adaptation on; it's a place to put things that don't easily fit in the framework. |
[in] | output_index | The index that is to be computed at the output of this Component. |
[in] | input_index_set | The set of indexes that is available at the input of this Component. |
[out] | used_inputs | If this is non-NULL and the output is computable this will be set to the list of input indexes that will actually be used in the computation. |
The default implementation of this function is suitable for any SimpleComponent: it just returns true if output_index is in input_index_set, and if so sets used_inputs to vector containing that one Index.
Reimplemented from Component.
Definition at line 670 of file nnet-general-component.cc.
References StatisticsPoolingComponent::input_period_, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::right_context_, and Index::t.
|
private |
|
inlinevirtual |
Returns output-dimension of this component.
Implements Component.
Definition at line 346 of file nnet-general-component.h.
References DistributeComponent::InitFromConfig(), and DistributeComponent::input_dim_.
Referenced by ConstantComponent::Info(), and StatisticsPoolingComponent::Propagate().
|
virtual |
This function must return NULL for simple Components.
Returns a pointer to a class that may contain some precomputed component-specific and computation-specific indexes to be in used in the Propagate and Backprop functions.
[in] | misc_info | This argument is supplied to handle things that the framework can't very easily supply: information like which time indexes are needed for AggregateComponent, which time-indexes are available at the input of a recurrent network, and so on. misc_info may not even ever be used here. We will add members to misc_info as needed. |
[in] | input_indexes | A vector of indexes that explains what time-indexes (and other indexes) each row of the in/in_value/in_deriv matrices given to Propagate and Backprop will mean. |
[in] | output_indexes | A vector of indexes that explains what time-indexes (and other indexes) each row of the out/out_value/out_deriv matrices given to Propagate and Backprop will mean. |
[in] | need_backprop | True if we might need to do backprop with this component, so that if any different indexes are needed for backprop then those should be computed too. |
Reimplemented from Component.
Definition at line 708 of file nnet-general-component.cc.
References StatisticsPoolingComponentPrecomputedIndexes::backward_indexes, Int32Pair::first, StatisticsPoolingComponentPrecomputedIndexes::forward_indexes, rnnlm::i, StatisticsPoolingComponent::input_period_, KALDI_ASSERT, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::right_context_, Int32Pair::second, and Index::t.
|
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 777 of file nnet-general-component.cc.
References CuMatrixBase< Real >::AddMatMatElements(), CuMatrixBase< Real >::AddRowRanges(), CuMatrixBase< Real >::ApplyFloor(), CuMatrixBase< Real >::ApplyPow(), CuMatrixBase< Real >::ColRange(), CuArrayBase< T >::Dim(), CuMatrixBase< Real >::DivRowsVec(), StatisticsPoolingComponentPrecomputedIndexes::forward_indexes, StatisticsPoolingComponent::input_dim_, KALDI_ASSERT, kaldi::kUndefined, StatisticsPoolingComponent::num_log_count_features_, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), StatisticsPoolingComponent::output_stddevs_, StatisticsPoolingComponent::OutputDim(), CuVectorBase< Real >::Set(), CuMatrixBase< Real >::SetZero(), and StatisticsPoolingComponent::variance_floor_.
|
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 351 of file nnet-general-component.h.
References DistributeComponent::Backprop(), kaldi::nnet3::kBackpropAdds, kaldi::nnet3::kBackpropNeedsInput, kaldi::nnet3::kBackpropNeedsOutput, kaldi::nnet3::kReordersIndexes, DistributeComponent::Propagate(), DistributeComponent::Read(), and DistributeComponent::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 603 of file nnet-general-component.cc.
References StatisticsPoolingComponent::Check(), kaldi::ExpectOneOrTwoTokens(), kaldi::nnet3::ExpectToken(), StatisticsPoolingComponent::input_dim_, StatisticsPoolingComponent::input_period_, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::num_log_count_features_, StatisticsPoolingComponent::output_stddevs_, kaldi::ReadBasicType(), StatisticsPoolingComponent::require_direct_input_, StatisticsPoolingComponent::right_context_, and StatisticsPoolingComponent::variance_floor_.
|
virtual |
This function only does something interesting for non-simple Components.
It provides an opportunity for a Component to reorder the or pad the indexes at its input and output. This might be useful, for instance, if a component requires a particular ordering of the indexes that doesn't correspond to their natural ordering. Components that might modify the indexes are required to return the kReordersIndexes flag in their Properties(). The ReorderIndexes() function is now allowed to insert blanks into the indexes. The 'blanks' must be of the form (n,kNoTime,x), where the marker kNoTime (a very negative number) is there where the 't' indexes normally live. The reason we don't just have, say, (-1,-1,-1), relates to the need to preserve a regular pattern over the 'n' indexes so that 'shortcut compilation' (c.f. ExpandComputation()) can work correctly
[in,out] | Indexes | at the input of the Component. |
[in,out] | Indexes | at the output of the Component |
Reimplemented from Component.
Definition at line 645 of file nnet-general-component.cc.
|
inline |
Definition at line 403 of file nnet-general-component.h.
|
inlinevirtual |
Returns a string such as "SigmoidComponent", describing the type of the object.
Implements Component.
Definition at line 350 of file nnet-general-component.h.
Referenced by BackpropTruncationComponent::Info(), ConstantComponent::Info(), and BackpropTruncationComponent::InitFromConfig().
|
virtual |
Write component to stream.
Implements Component.
Definition at line 626 of file nnet-general-component.cc.
References StatisticsPoolingComponent::input_dim_, StatisticsPoolingComponent::input_period_, StatisticsPoolingComponent::left_context_, StatisticsPoolingComponent::num_log_count_features_, StatisticsPoolingComponent::output_stddevs_, StatisticsPoolingComponent::right_context_, StatisticsPoolingComponent::variance_floor_, kaldi::WriteBasicType(), and kaldi::WriteToken().
|
private |
Definition at line 413 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Backprop(), StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::Propagate(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 414 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::GetInputIndexes(), StatisticsPoolingComponent::IsComputable(), StatisticsPoolingComponent::PrecomputeIndexes(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 415 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::GetInputIndexes(), StatisticsPoolingComponent::IsComputable(), StatisticsPoolingComponent::PrecomputeIndexes(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 417 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Backprop(), StatisticsPoolingComponent::Propagate(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 418 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Backprop(), StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::Propagate(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 425 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Read().
|
private |
Definition at line 416 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::GetInputIndexes(), StatisticsPoolingComponent::IsComputable(), StatisticsPoolingComponent::PrecomputeIndexes(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().
|
private |
Definition at line 419 of file nnet-general-component.h.
Referenced by StatisticsPoolingComponent::Check(), StatisticsPoolingComponent::Propagate(), StatisticsPoolingComponent::Read(), and StatisticsPoolingComponent::Write().