pub enum AlgorithmFamily {
Linear,
TreeBased,
Ensemble,
NeighborBased,
SVM,
NaiveBayes,
NeuralNetwork,
GaussianProcess,
DiscriminantAnalysis,
Dummy,
}Expand description
Algorithm family categories for classification and regression
Variants§
Linear
Linear models (LogisticRegression, LinearRegression, etc.)
TreeBased
Tree-based models (DecisionTree, RandomForest, etc.)
Ensemble
Ensemble methods (AdaBoost, Stacking, etc.)
NeighborBased
Neighbor-based models (KNN, etc.)
SVM
Support Vector Machines
NaiveBayes
Naive Bayes classifiers
NeuralNetwork
Neural networks
GaussianProcess
Gaussian processes
DiscriminantAnalysis
Discriminant analysis
Dummy
Dummy/baseline models
Trait Implementations§
Source§impl Clone for AlgorithmFamily
impl Clone for AlgorithmFamily
Source§fn clone(&self) -> AlgorithmFamily
fn clone(&self) -> AlgorithmFamily
Returns a duplicate 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 AlgorithmFamily
impl Debug for AlgorithmFamily
Source§impl Display for AlgorithmFamily
impl Display for AlgorithmFamily
Source§impl Hash for AlgorithmFamily
impl Hash for AlgorithmFamily
Source§impl PartialEq for AlgorithmFamily
impl PartialEq for AlgorithmFamily
impl Eq for AlgorithmFamily
impl StructuralPartialEq for AlgorithmFamily
Auto Trait Implementations§
impl Freeze for AlgorithmFamily
impl RefUnwindSafe for AlgorithmFamily
impl Send for AlgorithmFamily
impl Sync for AlgorithmFamily
impl Unpin for AlgorithmFamily
impl UnwindSafe for AlgorithmFamily
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more