Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef __itkQuickPropLearningRule_h
00026 #define __itkQuickPropLearningRule_h
00027
00028 #include <iostream>
00029 #include "itkLightProcessObject.h"
00030 #include "itkLearningFunctionBase.h"
00031
00032 namespace itk
00033 {
00034 namespace Statistics
00035 {
00036
00037 template<class LayerType, class TTargetVector>
00038 class QuickPropLearningRule : public LearningFunctionBase<LayerType, TTargetVector>
00039 {
00040 public:
00041
00042 typedef QuickPropLearningRule Self;
00043 typedef LearningFunctionBase<LayerType, TTargetVector> Superclass;
00044 typedef SmartPointer<Self> Pointer;
00045 typedef SmartPointer<const Self> ConstPointer;
00046
00048 itkTypeMacro(QuickPropLearningRule, LearningFunctionBase);
00049
00051 itkNewMacro(Self);
00052
00053 typedef typename Superclass::ValueType ValueType;
00054 virtual void Learn(LayerType* layer, ValueType learningrate);
00055 virtual void Learn(LayerType* layer, TTargetVector errors, ValueType learningrate);
00056
00057 itkSetMacro(Max_Growth_Factor, ValueType);
00058 itkGetConstReferenceMacro(Max_Growth_Factor,ValueType);
00059
00060 itkSetMacro(Decay, ValueType);
00061 itkGetConstReferenceMacro(Decay,ValueType);
00062
00063 protected:
00064 QuickPropLearningRule();
00065 virtual ~QuickPropLearningRule(){};
00066
00067 ValueType m_Momentum;
00068 ValueType m_Max_Growth_Factor;
00069 ValueType m_Decay;
00070 ValueType m_Threshold;
00071 ValueType m_Epsilon;
00072 ValueType m_SigmoidPrimeOffset;
00073 ValueType m_SplitEpsilon;
00074
00076 virtual void PrintSelf( std::ostream& os, Indent indent ) const;
00077 };
00078
00079 }
00080 }
00081
00082 #ifndef ITK_MANUAL_INSTANTIATION
00083 #include "itkQuickPropLearningRule.txx"
00084 #endif
00085
00086 #endif
00087