org.opencv.ml
Class CvANN_MLP_TrainParams
java.lang.Object
org.opencv.ml.CvANN_MLP_TrainParams
public class CvANN_MLP_TrainParams
- extends java.lang.Object
Parameters of the MLP training algorithm. You can initialize the structure by
a constructor or the individual parameters can be adjusted after the
structure is created.
The back-propagation algorithm parameters:
- See Also:
- org.opencv.ml.CvANN_MLP_TrainParams
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BACKPROP
public static final int BACKPROP
- See Also:
- Constant Field Values
nativeObj
protected final long nativeObj
RPROP
public static final int RPROP
- See Also:
- Constant Field Values
CvANN_MLP_TrainParams
public CvANN_MLP_TrainParams()
The constructors.
By default the RPROP algorithm is used:
- See Also:
- org.opencv.ml.CvANN_MLP_TrainParams.CvANN_MLP_TrainParams
CvANN_MLP_TrainParams
protected CvANN_MLP_TrainParams(long addr)
finalize
protected void finalize()
throws java.lang.Throwable
- Overrides:
finalize
in class java.lang.Object
- Throws:
java.lang.Throwable
get_bp_dw_scale
public double get_bp_dw_scale()
get_bp_moment_scale
public double get_bp_moment_scale()
get_rp_dw_max
public double get_rp_dw_max()
get_rp_dw_min
public double get_rp_dw_min()
get_rp_dw_minus
public double get_rp_dw_minus()
get_rp_dw_plus
public double get_rp_dw_plus()
get_rp_dw0
public double get_rp_dw0()
get_term_crit
public TermCriteria get_term_crit()
get_train_method
public int get_train_method()
set_bp_dw_scale
public void set_bp_dw_scale(double bp_dw_scale)
set_bp_moment_scale
public void set_bp_moment_scale(double bp_moment_scale)
set_rp_dw_max
public void set_rp_dw_max(double rp_dw_max)
set_rp_dw_min
public void set_rp_dw_min(double rp_dw_min)
set_rp_dw_minus
public void set_rp_dw_minus(double rp_dw_minus)
set_rp_dw_plus
public void set_rp_dw_plus(double rp_dw_plus)
set_rp_dw0
public void set_rp_dw0(double rp_dw0)
set_term_crit
public void set_term_crit(TermCriteria term_crit)
set_train_method
public void set_train_method(int train_method)