pub enum ModelZooType {
Show 13 variants
LinearRegression,
LogisticRegression,
DecisionTree,
RandomForest,
GradientBoosting,
Knn,
KMeans,
Svm,
NaiveBayes,
NeuralNetwork,
Ensemble,
TimeSeries,
Other,
}Expand description
Model type for zoo classification
Variants§
LinearRegression
Linear regression
LogisticRegression
Logistic regression
DecisionTree
Decision tree
RandomForest
Random forest
GradientBoosting
Gradient boosting
Knn
K-Nearest Neighbors
KMeans
K-Means clustering
Svm
Support Vector Machine
NaiveBayes
Naive Bayes
NeuralNetwork
Neural network
Ensemble
Ensemble model
TimeSeries
Time series (ARIMA, etc.)
Other
Other/custom
Implementations§
Source§impl ModelZooType
impl ModelZooType
Trait Implementations§
Source§impl Clone for ModelZooType
impl Clone for ModelZooType
Source§fn clone(&self) -> ModelZooType
fn clone(&self) -> ModelZooType
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 ModelZooType
impl Debug for ModelZooType
Source§impl Default for ModelZooType
impl Default for ModelZooType
Source§fn default() -> ModelZooType
fn default() -> ModelZooType
Returns the “default value” for a type. Read more
Source§impl Display for ModelZooType
impl Display for ModelZooType
Source§impl Hash for ModelZooType
impl Hash for ModelZooType
Source§impl PartialEq for ModelZooType
impl PartialEq for ModelZooType
impl Copy for ModelZooType
impl Eq for ModelZooType
impl StructuralPartialEq for ModelZooType
Auto Trait Implementations§
impl Freeze for ModelZooType
impl RefUnwindSafe for ModelZooType
impl Send for ModelZooType
impl Sync for ModelZooType
impl Unpin for ModelZooType
impl UnsafeUnpin for ModelZooType
impl UnwindSafe for ModelZooType
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