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 TOutput>
00038 class QuickPropLearningRule : public LearningFunctionBase<LayerType, TOutput>
00039 {
00040 public:
00041
00042 typedef QuickPropLearningRule Self;
00043 typedef LearningFunctionBase<LayerType, TOutput> 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 void Learn(LayerType* layer, ValueType learningrate);
00055
00056 void Learn(LayerType* layer, TOutput errors, ValueType learningrate);
00057
00058 itkSetMacro(Max_Growth_Factor, ValueType);
00059 itkGetConstReferenceMacro(Max_Growth_Factor,ValueType);
00060
00061 itkSetMacro(Decay, ValueType);
00062 itkGetConstReferenceMacro(Decay,ValueType);
00063
00064 protected:
00065 QuickPropLearningRule();
00066 ~QuickPropLearningRule(){};
00067
00068 ValueType m_Momentum;
00069 ValueType m_Max_Growth_Factor;
00070 ValueType m_Decay;
00071 ValueType m_Threshold;
00072 ValueType m_Epsilon;
00073 ValueType m_SigmoidPrimeOffset;
00074 ValueType m_SplitEpsilon;
00075
00077 virtual void PrintSelf( std::ostream& os, Indent indent ) const;
00078 };
00079
00080 }
00081 }
00082
00083 #ifndef ITK_MANUAL_INSTANTIATION
00084 #include "itkQuickPropLearningRule.txx"
00085 #endif
00086
00087 #endif