Click or drag to resize

ANN_MLP Properties

The ANN_MLP type exposes the following members.

Properties
  NameDescription
Protected propertyAllocatedMemory
Gets or sets a memory address allocated by AllocMemory.
(Inherited from DisposableObject.)
Protected propertyAllocatedMemorySize
Gets or sets the byte length of the allocated memory
(Inherited from DisposableObject.)
Public propertyBackpropMomentumScale
Strength of the momentum term (the difference between weights on the 2 previous iterations). This parameter provides some inertia to smooth the random fluctuations of the weights. It can vary from 0 (the feature is disabled) to 1 and beyond. The value 0.1 or so is good enough. Default value is 0.1.
Public propertyBackpropWeightScale
Strength of the weight gradient term. The recommended value is about 0.1. Default value is 0.1.
Public propertyCvPtr
Native pointer of OpenCV structure
(Inherited from DisposableCvObject.)
Protected propertyDataHandle
Gets or sets a handle which allocates using cvSetData.
(Inherited from DisposableObject.)
Public propertyEmpty
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
(Inherited from Algorithm.)
Public propertyIsDisposed
Gets a value indicating whether this instance has been disposed.
(Inherited from DisposableObject.)
Public propertyIsEnabledDispose
Gets or sets a value indicating whether you permit disposing this instance.
(Inherited from DisposableObject.)
Public propertyRpropDW0
Initial value Delta_0 of update-values Delta_{ij}. Default value is 0.1.
Public propertyRpropDWMax
Update-values upper limit Delta_{max}. It must be >1. Default value is 50.
Public propertyRpropDWMin
Update-values lower limit Delta_{min}. It must be positive. Default value is FLT_EPSILON.
Public propertyRpropDWMinus
Decrease factor eta^-. It must be \>1. Default value is 0.5.
Public propertyRpropDWPlus
Increase factor eta^+. It must be >1. Default value is 1.2.
Public propertyTermCriteria
Termination criteria of the training algorithm.
Top
See Also