NormalizeComponent Class Reference

#include <nnet-normalize-component.h>

Inheritance diagram for NormalizeComponent:
Collaboration diagram for NormalizeComponent:

Public Member Functions

 NormalizeComponent (const NormalizeComponent &other)
 
virtual int32 Properties () const
 Return bitmask of the component's properties. More...
 
 NormalizeComponent ()
 
virtual std::string Type () const
 Returns a string such as "SigmoidComponent", describing the type of the object. More...
 
virtual void InitFromConfig (ConfigLine *cfl)
 Initialize, from a ConfigLine object. More...
 
virtual ComponentCopy () const
 Copies component (deep copy). 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, 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 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...
 
- 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 ComponentPrecomputedIndexesPrecomputeIndexes (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 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 Types

enum  { kExpSquaredNormFloor = -66 }
 

Private Member Functions

NormalizeComponentoperator= (const NormalizeComponent &other)
 

Private Attributes

int32 input_dim_
 
int32 block_dim_
 
BaseFloat target_rms_
 
bool add_log_stddev_
 

Static Private Attributes

static const BaseFloat kSquaredNormFloor
 

Additional Inherited Members

- Static Public Member Functions inherited from Component
static ComponentReadNew (std::istream &is, bool binary)
 Read component from stream (works out its type). Dies on error. More...
 
static ComponentNewComponentOfType (const std::string &type)
 Returns a new Component of the given type e.g. More...
 

Detailed Description

Definition at line 73 of file nnet-normalize-component.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
private
Enumerator
kExpSquaredNormFloor 

Definition at line 107 of file nnet-normalize-component.h.

Constructor & Destructor Documentation

◆ NormalizeComponent() [1/2]

NormalizeComponent ( const NormalizeComponent other)
explicit

Definition at line 36 of file nnet-normalize-component.cc.

36  :
37  input_dim_(other.input_dim_), block_dim_(other.block_dim_),
38  target_rms_(other.target_rms_),
39  add_log_stddev_(other.add_log_stddev_) { }

◆ NormalizeComponent() [2/2]

NormalizeComponent ( )
inline

Definition at line 82 of file nnet-normalize-component.h.

Referenced by NormalizeComponent::Copy().

82 { }

Member Function Documentation

◆ Backprop()

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 to_update,
CuMatrixBase< BaseFloat > *  in_deriv 
) const
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.

Parameters
[in]debug_infoThe component name, to be printed out in any warning messages.
[in]indexesA 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_valueThe matrix that was given as input to the Propagate function. Will be ignored (and may be empty) if Properties()&kBackpropNeedsInput == 0.
[in]out_valueThe matrix that was output from the Propagate function. Will be ignored (and may be empty) if Properties()&kBackpropNeedsOutput == 0
[in]out_derivThe derivative at the output of this component.
[in]memoThis 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_updateIf 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_derivThe 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 177 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, CuMatrixBase< Real >::Data(), kaldi::cu::DiffNormalizePerRow(), NormalizeComponent::input_dim_, KALDI_ASSERT, CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), NVTX_RANGE, CuMatrixBase< Real >::Stride(), and NormalizeComponent::target_rms_.

Referenced by NormalizeComponent::Copy(), and BatchNormComponent::Properties().

184  {
185  NVTX_RANGE("NormalizeComponent::Backprop");
186  if (!in_deriv)
187  return;
188  if (block_dim_ != input_dim_) {
189  int32 num_blocks = input_dim_ / block_dim_,
190  new_num_rows = in_value.NumRows() * num_blocks,
191  output_block_dim = block_dim_ + (add_log_stddev_ ? 1 : 0);
192  KALDI_ASSERT(in_value.Stride() == in_value.NumCols() &&
193  out_deriv.Stride() == out_deriv.NumCols() &&
194  in_deriv->Stride() == in_deriv->NumCols());
195  CuSubMatrix<BaseFloat> in_value_reshaped(in_value.Data(), new_num_rows,
197  out_deriv_reshaped(out_deriv.Data(), new_num_rows,
198  output_block_dim, output_block_dim),
199  in_deriv_reshaped(in_deriv->Data(), new_num_rows,
201  cu::DiffNormalizePerRow(in_value_reshaped, out_deriv_reshaped, target_rms_,
202  add_log_stddev_, &in_deriv_reshaped);
203  } else {
205  in_deriv);
206  }
207 }
kaldi::int32 int32
void DiffNormalizePerRow(const CuMatrixBase< Real > &in_value, const CuMatrixBase< Real > &out_deriv, const Real target_rms, const bool add_log_stddev, CuMatrixBase< Real > *in_deriv)
Definition: cu-math.cc:349
#define KALDI_ASSERT(cond)
Definition: kaldi-error.h:185
#define NVTX_RANGE(name)
Definition: cu-common.h:143

◆ Copy()

◆ Info()

std::string Info ( ) const
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 113 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, NormalizeComponent::input_dim_, NormalizeComponent::InputDim(), NormalizeComponent::OutputDim(), NormalizeComponent::target_rms_, and NormalizeComponent::Type().

Referenced by NormalizeComponent::OutputDim(), and BatchNormComponent::OutputDim().

113  {
114  std::ostringstream stream;
115  stream << Type() << ", input-dim=" << InputDim()
116  << ", output-dim=" << OutputDim() << ", target-rms=" << target_rms_
117  << ", add-log-stddev=" << std::boolalpha << add_log_stddev_;
118  if (block_dim_ != input_dim_)
119  stream << ", block-dim=" << block_dim_;
120  return stream.str();
121 }
virtual std::string Type() const
Returns a string such as "SigmoidComponent", describing the type of the object.
virtual int32 OutputDim() const
Returns output-dimension of this component.
virtual int32 InputDim() const
Returns input-dimension of this component.

◆ InitFromConfig()

void InitFromConfig ( ConfigLine cfl)
virtual

Initialize, from a ConfigLine object.

Parameters
[in]cflA ConfigLine containing any parameters that are needed for initialization. For example: "dim=100 param-stddev=0.1"

Implements Component.

Definition at line 41 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, ConfigLine::GetValue(), ConfigLine::HasUnusedValues(), NormalizeComponent::input_dim_, KALDI_ERR, NormalizeComponent::target_rms_, NormalizeComponent::Type(), and ConfigLine::WholeLine().

Referenced by BatchNormComponent::OutputDim(), and NormalizeComponent::Type().

41  {
42  input_dim_ = 0;
43  add_log_stddev_ = false;
44  target_rms_ = 1.0;
45  bool ok = cfl->GetValue("dim", &input_dim_) ||
46  cfl->GetValue("input-dim", &input_dim_);
48  cfl->GetValue("block-dim", &block_dim_);
49  cfl->GetValue("target-rms", &target_rms_);
50  cfl->GetValue("add-log-stddev", &add_log_stddev_);
51  if (!ok || cfl->HasUnusedValues() || input_dim_ <= 0 || target_rms_ <= 0.0 ||
52  block_dim_ <= 0 || input_dim_ % block_dim_ != 0)
53  KALDI_ERR << "Invalid initializer for layer of type "
54  << Type() << ": \"" << cfl->WholeLine() << "\"";
55 }
#define KALDI_ERR
Definition: kaldi-error.h:147
virtual std::string Type() const
Returns a string such as "SigmoidComponent", describing the type of the object.

◆ InputDim()

virtual int32 InputDim ( ) const
inlinevirtual

Returns input-dimension of this component.

Implements Component.

Definition at line 100 of file nnet-normalize-component.h.

References NormalizeComponent::input_dim_.

Referenced by NormalizeComponent::Info(), and NormalizeComponent::Propagate().

◆ operator=()

NormalizeComponent& operator= ( const NormalizeComponent other)
private

◆ OutputDim()

◆ Propagate()

void * Propagate ( const ComponentPrecomputedIndexes indexes,
const CuMatrixBase< BaseFloat > &  in,
CuMatrixBase< BaseFloat > *  out 
) const
virtual

Propagate function.

Parameters
[in]indexesA 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]inThe input to this component. Num-columns == InputDim().
[out]outThe 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.
Returns
Normally returns NULL, but may return a non-NULL value for components which have the flag kUsesMemo set. This value will be passed into the corresponding Backprop routine.

Implements Component.

Definition at line 132 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, CuMatrixBase< Real >::Data(), NormalizeComponent::input_dim_, NormalizeComponent::InputDim(), KALDI_ASSERT, kaldi::cu::NormalizePerRow(), CuMatrixBase< Real >::NumCols(), CuMatrixBase< Real >::NumRows(), NormalizeComponent::OutputDim(), CuMatrixBase< Real >::Stride(), and NormalizeComponent::target_rms_.

Referenced by NormalizeComponent::Copy(), and BatchNormComponent::Properties().

134  {
135  KALDI_ASSERT(in.NumCols() == InputDim() && out->NumCols() == OutputDim() &&
136  in.NumRows() == out->NumRows());
137  if (block_dim_ != input_dim_) {
138  int32 num_blocks = input_dim_ / block_dim_,
139  new_num_rows = in.NumRows() * num_blocks,
140  output_block_dim = block_dim_ + (add_log_stddev_ ? 1 : 0);
141  KALDI_ASSERT(in.Stride() == in.NumCols() && out->Stride() == out->NumCols());
142  CuSubMatrix<BaseFloat> in_reshaped(in.Data(), new_num_rows,
144  out_reshaped(out->Data(), new_num_rows,
145  output_block_dim, output_block_dim);
147  &out_reshaped);
148  } else {
150  }
151  return NULL;
152 }
kaldi::int32 int32
#define KALDI_ASSERT(cond)
Definition: kaldi-error.h:185
virtual int32 OutputDim() const
Returns output-dimension of this component.
virtual int32 InputDim() const
Returns input-dimension of this component.
void NormalizePerRow(const CuMatrixBase< Real > &in, const Real target_rms, const bool add_log_stddev, CuMatrixBase< Real > *out)
Normalize nonlinearity modifies the vector of activations by scaling it so that the root-mean-square ...
Definition: cu-math.cc:280

◆ Properties()

virtual int32 Properties ( ) const
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 77 of file nnet-normalize-component.h.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, NormalizeComponent::input_dim_, kaldi::nnet3::kBackpropAdds, kaldi::nnet3::kBackpropInPlace, kaldi::nnet3::kBackpropNeedsInput, kaldi::nnet3::kInputContiguous, kaldi::nnet3::kOutputContiguous, kaldi::nnet3::kPropagateInPlace, and kaldi::nnet3::kSimpleComponent.

◆ Read()

void Read ( std::istream &  is,
bool  binary 
)
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 57 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, count, kaldi::nnet3::ExpectToken(), NormalizeComponent::input_dim_, KALDI_ASSERT, CuVector< Real >::Read(), kaldi::ReadBasicType(), kaldi::ReadToken(), and NormalizeComponent::target_rms_.

Referenced by NormalizeComponent::Copy(), and BatchNormComponent::Properties().

57  {
58  std::string token;
59  ReadToken(is, binary, &token);
60  if (token == "<NormalizeComponent>") {
61  ReadToken(is, binary, &token);
62  }
63  KALDI_ASSERT(token == "<Dim>" || token == "<InputDim>");
64  ReadBasicType(is, binary, &input_dim_); // Read dimension.
65  ReadToken(is, binary, &token);
66  if (token == "<BlockDim>") {
67  ReadBasicType(is, binary, &block_dim_);
68  ReadToken(is, binary, &token);
69  } else {
71  }
72  // read target_rms_ if it is available.
73  if (token == "<TargetRms>") {
74  ReadBasicType(is, binary, &target_rms_);
75  ReadToken(is, binary, &token);
76  }
77  // Read add_log_stddev_ token, if it is available.
78  if (token == "<AddLogStddev>") {
79  ReadBasicType(is, binary, &add_log_stddev_);
80  ReadToken(is, binary, &token);
81  } else {
82  add_log_stddev_ = false;
83  }
84  if (token == "<ValueAvg>") {
85  // back-compatibility code.
86  CuVector<double> temp;
87  temp.Read(is, binary);
88  ExpectToken(is, binary, "<DerivAvg>");
89  temp.Read(is, binary);
90  ExpectToken(is, binary, "<Count>");
91  double count;
92  ReadBasicType(is, binary, &count);
93  ReadToken(is, binary, &token);
94  }
95  KALDI_ASSERT(token == "</NormalizeComponent>");
96 }
void ReadBasicType(std::istream &is, bool binary, T *t)
ReadBasicType is the name of the read function for bool, integer types, and floating-point types...
Definition: io-funcs-inl.h:55
void ReadToken(std::istream &is, bool binary, std::string *str)
ReadToken gets the next token and puts it in str (exception on failure).
Definition: io-funcs.cc:154
const size_t count
static void ExpectToken(const std::string &token, const std::string &what_we_are_parsing, const std::string **next_token)
#define KALDI_ASSERT(cond)
Definition: kaldi-error.h:185

◆ Type()

virtual std::string Type ( ) const
inlinevirtual

Returns a string such as "SigmoidComponent", describing the type of the object.

Implements Component.

Definition at line 83 of file nnet-normalize-component.h.

References NormalizeComponent::InitFromConfig().

Referenced by NormalizeComponent::Info(), and NormalizeComponent::InitFromConfig().

83 { return "NormalizeComponent"; }

◆ Write()

void Write ( std::ostream &  os,
bool  binary 
) const
virtual

Write component to stream.

Implements Component.

Definition at line 98 of file nnet-normalize-component.cc.

References NormalizeComponent::add_log_stddev_, NormalizeComponent::block_dim_, NormalizeComponent::input_dim_, NormalizeComponent::target_rms_, kaldi::WriteBasicType(), and kaldi::WriteToken().

Referenced by NormalizeComponent::Copy(), and BatchNormComponent::Properties().

98  {
99  WriteToken(os, binary, "<NormalizeComponent>");
100  WriteToken(os, binary, "<InputDim>");
101  WriteBasicType(os, binary, input_dim_);
102  if (block_dim_ != input_dim_) {
103  WriteToken(os, binary, "<BlockDim>");
104  WriteBasicType(os, binary, block_dim_);
105  }
106  WriteToken(os, binary, "<TargetRms>");
107  WriteBasicType(os, binary, target_rms_);
108  WriteToken(os, binary, "<AddLogStddev>");
109  WriteBasicType(os, binary, add_log_stddev_);
110  WriteToken(os, binary, "</NormalizeComponent>");
111 }
void WriteToken(std::ostream &os, bool binary, const char *token)
The WriteToken functions are for writing nonempty sequences of non-space characters.
Definition: io-funcs.cc:134
void WriteBasicType(std::ostream &os, bool binary, T t)
WriteBasicType is the name of the write function for bool, integer types, and floating-point types...
Definition: io-funcs-inl.h:34

Member Data Documentation

◆ add_log_stddev_

◆ block_dim_

◆ input_dim_

◆ kSquaredNormFloor

const BaseFloat kSquaredNormFloor
staticprivate
Initial value:

Definition at line 111 of file nnet-normalize-component.h.

◆ target_rms_


The documentation for this class was generated from the following files: