NoOpComponent Class Reference

NoOpComponent just duplicates its input. More...

#include <nnet-simple-component.h>

Inheritance diagram for NoOpComponent:
Collaboration diagram for NoOpComponent:

Public Member Functions

 NoOpComponent (const NoOpComponent &other)
 
 NoOpComponent ()
 
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 int32 InputDim () const
 Returns input-dimension of this component. More...
 
virtual int32 OutputDim () const
 Returns output-dimension of this component. More...
 
virtual ComponentCopy ()
 
virtual void InitFromConfig (ConfigLine *cfl)
 Initialize, from a ConfigLine object. 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 std::string Info () const
 Returns some text-form information about this component, for diagnostics. 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 > &, 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...
 
- 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 Member Functions

NoOpComponentoperator= (const NoOpComponent &other)
 

Private Attributes

int32 dim_
 
BaseFloat backprop_scale_
 

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

NoOpComponent just duplicates its input.

We don't anticipate this being used very often, but it may sometimes make your life easier. Config parameters:

dim E.g. dim=1024. Required. backprop-scale Defaults to 1.0. May be set to a different value to scale the derivatives being backpropagated.

Definition at line 1186 of file nnet-simple-component.h.

Constructor & Destructor Documentation

◆ NoOpComponent() [1/2]

NoOpComponent ( const NoOpComponent other)
inlineexplicit

Definition at line 1188 of file nnet-simple-component.h.

1188  :
1189  dim_(other.dim_), backprop_scale_(other.backprop_scale_) { }

◆ NoOpComponent() [2/2]

NoOpComponent ( )
inline

Definition at line 1190 of file nnet-simple-component.h.

1190 { }

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 447 of file nnet-simple-component.cc.

References CuMatrixBase< Real >::CopyFromMat(), NVTX_RANGE, and CuMatrixBase< Real >::Scale().

455  {
456  NVTX_RANGE("NoOpComponent::Backprop");
457  in_deriv->CopyFromMat(out_deriv);
458  if (backprop_scale_ != 1.0)
459  in_deriv->Scale(backprop_scale_);
460 }
#define NVTX_RANGE(name)
Definition: cu-common.h:143

◆ Copy() [1/2]

virtual Component* Copy ( )
inlinevirtual

◆ Copy() [2/2]

virtual Component* Copy ( ) const
inlinevirtual

Copies component (deep copy).

Implements Component.

Definition at line 1202 of file nnet-simple-component.h.

References PnormComponent::Backprop(), and PnormComponent::Propagate().

1202 { return new NoOpComponent(*this); }

◆ 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 472 of file nnet-simple-component.cc.

References DropoutComponent::dim_, and DropoutComponent::Type().

472  {
473  std::ostringstream stream;
474  stream << Type() << ", dim=" << dim_;
475  if (backprop_scale_ != 1.0)
476  stream << ", backprop-scale=" << backprop_scale_;
477  return stream.str();
478 }
virtual std::string Type() const
Returns a string such as "SigmoidComponent", describing the type of the object.

◆ 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 462 of file nnet-simple-component.cc.

References DropoutComponent::dim_, ConfigLine::GetValue(), ConfigLine::HasUnusedValues(), KALDI_ERR, DropoutComponent::Type(), and ConfigLine::WholeLine().

462  {
463  backprop_scale_ = 1.0;
464  cfl->GetValue("backprop-scale", &backprop_scale_);
465  if (!cfl->GetValue("dim", &dim_) ||
466  dim_ <= 0 || cfl->HasUnusedValues()) {
467  KALDI_ERR << "Invalid initializer for layer of type "
468  << Type() << ": \"" << cfl->WholeLine() << "\"";
469  }
470 }
virtual std::string Type() const
Returns a string such as "SigmoidComponent", describing the type of the object.
#define KALDI_ERR
Definition: kaldi-error.h:147

◆ InputDim()

virtual int32 InputDim ( ) const
inlinevirtual

Returns input-dimension of this component.

Implements Component.

Definition at line 1195 of file nnet-simple-component.h.

◆ operator=()

NoOpComponent& operator= ( const NoOpComponent other)
private

◆ OutputDim()

virtual int32 OutputDim ( ) const
inlinevirtual

Returns output-dimension of this component.

Implements Component.

Definition at line 1196 of file nnet-simple-component.h.

◆ 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 440 of file nnet-simple-component.cc.

References CuMatrixBase< Real >::CopyFromMat().

442  {
443  out->CopyFromMat(in);
444  return NULL;
445 }

◆ 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 1192 of file nnet-simple-component.h.

References kaldi::nnet3::kBackpropInPlace, 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 489 of file nnet-simple-component.cc.

References DropoutComponent::dim_, kaldi::ExpectOneOrTwoTokens(), kaldi::nnet3::ExpectToken(), KALDI_ASSERT, kaldi::PeekToken(), CuVector< Real >::Read(), kaldi::ReadBasicType(), and kaldi::ReadToken().

489  {
490  ExpectOneOrTwoTokens(is, binary, "<NoOpComponent>", "<Dim>");
491  ReadBasicType(is, binary, &dim_);
492 
493  if (PeekToken(is, binary) == 'V') {
494  // This is the old format, from when NoOpComponent inherited from
495  // NonlinearComponent.
496  backprop_scale_ = 1.0;
497  ExpectToken(is, binary, "<ValueAvg>");
498  CuVector<BaseFloat> temp_vec;
499  temp_vec.Read(is, binary);
500  ExpectToken(is, binary, "<DerivAvg>");
501  temp_vec.Read(is, binary);
502  ExpectToken(is, binary, "<Count>");
503  BaseFloat temp_float;
504  ReadBasicType(is, binary, &temp_float);
505  if (PeekToken(is, binary) == 'O') {
506  ExpectToken(is, binary, "<OderivRms>");
507  temp_vec.Read(is, binary);
508  ExpectToken(is, binary, "<OderivCount>");
509  ReadBasicType(is, binary, &temp_float);
510  }
511  std::string token;
512  ReadToken(is, binary, &token);
513  if (token[0] != '<') {
514  // this should happen only rarely, in case we couldn't push back the
515  // '<' to the stream in PeekToken().
516  token = '<' + token;
517  }
518  if (token == "<NumDimsSelfRepaired>") {
519  ReadBasicType(is, binary, &temp_float);
520  ReadToken(is, binary, &token);
521  }
522  if (token == "<NumDimsProcessed>") {
523  ReadBasicType(is, binary, &temp_float);
524  ReadToken(is, binary, &token);
525  }
526  KALDI_ASSERT(token == "</NoOpComponent>");
527  return;
528  } else {
529  ExpectToken(is, binary, "<BackpropScale>");
530  ReadBasicType(is, binary, &backprop_scale_);
531  ExpectToken(is, binary, "</NoOpComponent>");
532  }
533 }
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
void ExpectOneOrTwoTokens(std::istream &is, bool binary, const std::string &token1, const std::string &token2)
This function is like ExpectToken but for two tokens, and it will either accept token1 and then token...
Definition: text-utils.cc:536
float BaseFloat
Definition: kaldi-types.h:29
static void ExpectToken(const std::string &token, const std::string &what_we_are_parsing, const std::string **next_token)
int PeekToken(std::istream &is, bool binary)
PeekToken will return the first character of the next token, or -1 if end of file.
Definition: io-funcs.cc:170
#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 1191 of file nnet-simple-component.h.

1191 { return "NoOpComponent"; }

◆ Write()

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

Write component to stream.

Implements Component.

Definition at line 480 of file nnet-simple-component.cc.

References DropoutComponent::dim_, kaldi::WriteBasicType(), and kaldi::WriteToken().

480  {
481  WriteToken(os, binary, "<NoOpComponent>");
482  WriteToken(os, binary, "<Dim>");
483  WriteBasicType(os, binary, dim_);
484  WriteToken(os, binary, "<BackpropScale>");
485  WriteBasicType(os, binary, backprop_scale_);
486  WriteToken(os, binary, "</NoOpComponent>");
487 }
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

◆ backprop_scale_

BaseFloat backprop_scale_
private

Definition at line 1216 of file nnet-simple-component.h.

◆ dim_

int32 dim_
private

Definition at line 1215 of file nnet-simple-component.h.


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