ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
00001 /*========================================================================= 00002 * 00003 * Copyright Insight Software Consortium 00004 * 00005 * Licensed under the Apache License, Version 2.0 (the "License"); 00006 * you may not use this file except in compliance with the License. 00007 * You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0.txt 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 * 00017 *=========================================================================*/ 00018 #ifndef __itkQuickPropLearningRule_h 00019 #define __itkQuickPropLearningRule_h 00020 00021 #include <iostream> 00022 #include "itkLearningFunctionBase.h" 00023 00024 namespace itk 00025 { 00026 namespace Statistics 00027 { 00042 template<class LayerType, class TTargetVector> 00043 class QuickPropLearningRule : public LearningFunctionBase<LayerType, TTargetVector> 00044 { 00045 public: 00046 00047 typedef QuickPropLearningRule Self; 00048 typedef LearningFunctionBase<LayerType, TTargetVector> Superclass; 00049 typedef SmartPointer<Self> Pointer; 00050 typedef SmartPointer<const Self> ConstPointer; 00051 00053 itkTypeMacro(QuickPropLearningRule, LearningFunctionBase); 00054 00056 itkNewMacro(Self); 00057 00058 typedef typename Superclass::ValueType ValueType; 00059 virtual void Learn(LayerType* layer, ValueType learningrate); 00060 virtual void Learn(LayerType* layer, TTargetVector errors, ValueType learningrate); 00061 00062 itkSetMacro(Max_Growth_Factor, ValueType); 00063 itkGetConstReferenceMacro(Max_Growth_Factor,ValueType); 00064 00065 itkSetMacro(Decay, ValueType); 00066 itkGetConstReferenceMacro(Decay,ValueType); 00067 00068 protected: 00069 QuickPropLearningRule(); 00070 virtual ~QuickPropLearningRule(){}; 00071 00072 ValueType m_Momentum; 00073 ValueType m_Max_Growth_Factor; 00074 ValueType m_Decay; 00075 ValueType m_Threshold; 00076 ValueType m_Epsilon; 00077 ValueType m_SigmoidPrimeOffset; 00078 ValueType m_SplitEpsilon; 00079 00081 virtual void PrintSelf( std::ostream& os, Indent indent ) const; 00082 }; 00083 00084 } // end namespace Statistics 00085 } // end namespace itk 00086 00087 #ifndef ITK_MANUAL_INSTANTIATION 00088 #include "itkQuickPropLearningRule.hxx" 00089 #endif 00090 00091 #endif 00092