#[repr(C)]pub enum Boost_Types {
DISCRETE = 0,
REAL = 1,
LOGIT = 2,
GENTLE = 3,
}
Expand description
Boosting type. Gentle AdaBoost and Real AdaBoost are often the preferable choices.
Variants§
DISCRETE = 0
Discrete AdaBoost.
REAL = 1
Real AdaBoost. It is a technique that utilizes confidence-rated predictions and works well with categorical data.
LOGIT = 2
LogitBoost. It can produce good regression fits.
GENTLE = 3
Gentle AdaBoost. It puts less weight on outlier data points and for that reason is often good with regression data.
Trait Implementations§
Source§impl Clone for Boost_Types
impl Clone for Boost_Types
Source§fn clone(&self) -> Boost_Types
fn clone(&self) -> Boost_Types
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Boost_Types
impl Debug for Boost_Types
Source§impl From<Boost_Types> for i32
impl From<Boost_Types> for i32
Source§fn from(v: Boost_Types) -> Self
fn from(v: Boost_Types) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Boost_Types
impl PartialEq for Boost_Types
Source§impl TryFrom<i32> for Boost_Types
impl TryFrom<i32> for Boost_Types
impl Copy for Boost_Types
impl Eq for Boost_Types
impl StructuralPartialEq for Boost_Types
Auto Trait Implementations§
impl Freeze for Boost_Types
impl RefUnwindSafe for Boost_Types
impl Send for Boost_Types
impl Sync for Boost_Types
impl Unpin for Boost_Types
impl UnwindSafe for Boost_Types
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more