pub enum FeatureType {
Binary,
Quantitative,
Integer,
}
Expand description
Indicates the type of a feature, used when dumping models as text.
Variants§
Binary
Binary indicator feature.
Quantitative
Quantitative feature (e.g. age, time, etc.), can be missing.
Integer
Integer feature (when hinted, decision boundary will be integer).
Trait Implementations§
Source§impl Display for FeatureType
impl Display for FeatureType
Auto Trait Implementations§
impl Freeze for FeatureType
impl RefUnwindSafe for FeatureType
impl Send for FeatureType
impl Sync for FeatureType
impl Unpin for FeatureType
impl UnwindSafe for FeatureType
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