ITK  4.2.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions
itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector > Class Template Reference

#include <itkErrorBackPropagationLearningFunctionBase.h>

+ Inheritance diagram for itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >:
+ Collaboration diagram for itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef
LayerType::LayerInterfaceType 
LayerInterfaceType
typedef SmartPointer< SelfPointer
typedef
ErrorBackPropagationLearningFunctionBase 
Self
typedef LearningFunctionBase
< typename
LayerType::LayerInterfaceType,
TTargetVector > 
Superclass
typedef Superclass::ValueType ValueType
- Public Types inherited from itk::Statistics::LearningFunctionBase< LayerType::LayerInterfaceType, TTargetVector >
- Public Types inherited from itk::LightProcessObject
- Public Types inherited from itk::Object
- Public Types inherited from itk::LightObject

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
virtual void Learn (LayerInterfaceType *layer, ValueType learningrate)
virtual void Learn (LayerInterfaceType *layer, TTargetVector error, ValueType learningrate)
- Public Member Functions inherited from itk::Statistics::LearningFunctionBase< LayerType::LayerInterfaceType, TTargetVector >
virtual void Learn (LayerType *layer, ValueType)=0
virtual void Learn (LayerType *layer, TTargetVector error, ValueType)=0
- Public Member Functions inherited from itk::LightProcessObject
virtual void AbortGenerateDataOff ()
virtual void AbortGenerateDataOn ()
virtual const bool & GetAbortGenerateData ()
virtual void SetAbortGenerateData (bool _arg)
virtual void UpdateOutputData ()
void UpdateProgress (float amount)
virtual void SetProgress (float _arg)
virtual const float & GetProgress ()
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
unsigned long AddObserver (const EventObject &event, Command *) const
virtual void DebugOff () const
virtual void DebugOn () const
CommandGetCommand (unsigned long tag)
bool GetDebug () const
MetaDataDictionaryGetMetaDataDictionary (void)
const MetaDataDictionaryGetMetaDataDictionary (void) const
virtual unsigned long GetMTime () const
virtual const TimeStampGetTimeStamp () const
bool HasObserver (const EventObject &event) const
void InvokeEvent (const EventObject &)
void InvokeEvent (const EventObject &) const
virtual void Modified () const
virtual void Register () const
void RemoveAllObservers ()
void RemoveObserver (unsigned long tag)
void SetDebug (bool debugFlag) const
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
virtual void SetReferenceCount (int)
virtual void UnRegister () const
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
virtual int GetReferenceCount () const
 itkCloneMacro (Self)
void Print (std::ostream &os, Indent indent=0) const

Static Public Member Functions

static Pointer New ()

Protected Member Functions

 ErrorBackPropagationLearningFunctionBase ()
virtual void PrintSelf (std::ostream &os, Indent indent) const
 ~ErrorBackPropagationLearningFunctionBase ()
- Protected Member Functions inherited from itk::Statistics::LearningFunctionBase< LayerType::LayerInterfaceType, TTargetVector >
 LearningFunctionBase ()
 ~LearningFunctionBase ()
- Protected Member Functions inherited from itk::LightProcessObject
 LightProcessObject ()
 ~LightProcessObject ()
virtual void GenerateData ()
- Protected Member Functions inherited from itk::Object
 Object ()
bool PrintObservers (std::ostream &os, Indent indent) const
virtual void SetTimeStamp (const TimeStamp &time)
virtual ~Object ()
- Protected Member Functions inherited from itk::LightObject
virtual LightObject::Pointer InternalClone () const
 LightObject ()
virtual void PrintHeader (std::ostream &os, Indent indent) const
virtual void PrintTrailer (std::ostream &os, Indent indent) const
virtual ~LightObject ()

Detailed Description

template<class LayerType, class TTargetVector>
class itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >

The ErrorBackPropagationLearningFunctionBase is the base class for all the ErrorBackPropagationLearning strategies.

ErrorBackPropagationLearning strategies include error back propagation, bp+momentum, conjugte gradient descent, and quick prop.

This class specifies how the errors are backpropagated for a layer. They take a LayerBase object as input and compute the input for the layers input weightset

Definition at line 42 of file itkErrorBackPropagationLearningFunctionBase.h.


Member Typedef Documentation

template<class LayerType , class TTargetVector >
typedef SmartPointer<const Self> itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::ConstPointer
template<class LayerType , class TTargetVector >
typedef LayerType::LayerInterfaceType itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::LayerInterfaceType
template<class LayerType , class TTargetVector >
typedef SmartPointer<Self> itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::Pointer
template<class LayerType , class TTargetVector >
typedef ErrorBackPropagationLearningFunctionBase itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::Self
template<class LayerType , class TTargetVector >
typedef LearningFunctionBase<typename LayerType::LayerInterfaceType, TTargetVector> itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::Superclass
template<class LayerType , class TTargetVector >
typedef Superclass::ValueType itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::ValueType

Constructor & Destructor Documentation

template<class LayerType , class TTargetVector >
itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::ErrorBackPropagationLearningFunctionBase ( )
inlineprotected
template<class LayerType , class TTargetVector >
itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::~ErrorBackPropagationLearningFunctionBase ( )
inlineprotected

Member Function Documentation

template<class LayerType , class TTargetVector >
virtual::itk::LightObject::Pointer itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::CreateAnother ( void  ) const
virtual

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::LightProcessObject.

template<class LayerType , class TTargetVector >
virtual const char* itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::GetNameOfClass ( ) const
virtual

Method for creation through the object factory.

Reimplemented from itk::Statistics::LearningFunctionBase< LayerType::LayerInterfaceType, TTargetVector >.

template<class LayerType , class TTargetVector >
virtual void itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::Learn ( LayerInterfaceType layer,
ValueType  learningrate 
)
virtual
template<class LayerType , class TTargetVector >
virtual void itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::Learn ( LayerInterfaceType layer,
TTargetVector  error,
ValueType  learningrate 
)
virtual
template<class LayerType , class TTargetVector >
static Pointer itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::New ( )
static

Method for creation through the object factory.

Reimplemented from itk::LightProcessObject.

template<class LayerType , class TTargetVector >
virtual void itk::Statistics::ErrorBackPropagationLearningFunctionBase< LayerType, TTargetVector >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
protectedvirtual

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