Enum Boost.Types
- Namespace
- OpenCvSharp.ML
- Assembly
- OpenCvSharp.dll
Boosting type. Gentle AdaBoost and Real AdaBoost are often the preferable choices.
public enum Boost.Types
Fields
Discrete = 0Discrete AdaBoost.
Gentle = 3Gentle AdaBoost. It puts less weight on outlier data points and for that reason is often good with regression data.
Logit = 2LogitBoost. It can produce good regression fits.
Real = 1Real AdaBoost. It is a technique that utilizes confidence-rated predictions and works well with categorical data.