pub enum MlModelArchitectureKind {
Show 14 variants
LinearModel,
DecisionTree,
RandomForest,
GradientBoostedTree,
Svm,
Knn,
Mlp,
Cnn,
Rnn,
Lstm,
Transformer,
Autoencoder,
Diffusion,
Other,
}Variants§
LinearModel
DecisionTree
RandomForest
GradientBoostedTree
Svm
Knn
Mlp
Cnn
Rnn
Lstm
Transformer
Autoencoder
Diffusion
Other
Implementations§
Trait Implementations§
Source§impl Clone for MlModelArchitectureKind
impl Clone for MlModelArchitectureKind
Source§fn clone(&self) -> MlModelArchitectureKind
fn clone(&self) -> MlModelArchitectureKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MlModelArchitectureKind
impl Debug for MlModelArchitectureKind
Source§impl Display for MlModelArchitectureKind
impl Display for MlModelArchitectureKind
Source§impl FromStr for MlModelArchitectureKind
impl FromStr for MlModelArchitectureKind
Source§impl Hash for MlModelArchitectureKind
impl Hash for MlModelArchitectureKind
Source§impl Ord for MlModelArchitectureKind
impl Ord for MlModelArchitectureKind
Source§fn cmp(&self, other: &MlModelArchitectureKind) -> Ordering
fn cmp(&self, other: &MlModelArchitectureKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MlModelArchitectureKind
impl PartialEq for MlModelArchitectureKind
Source§fn eq(&self, other: &MlModelArchitectureKind) -> bool
fn eq(&self, other: &MlModelArchitectureKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlModelArchitectureKind
impl PartialOrd for MlModelArchitectureKind
impl Copy for MlModelArchitectureKind
impl Eq for MlModelArchitectureKind
impl StructuralPartialEq for MlModelArchitectureKind
Auto Trait Implementations§
impl Freeze for MlModelArchitectureKind
impl RefUnwindSafe for MlModelArchitectureKind
impl Send for MlModelArchitectureKind
impl Sync for MlModelArchitectureKind
impl Unpin for MlModelArchitectureKind
impl UnsafeUnpin for MlModelArchitectureKind
impl UnwindSafe for MlModelArchitectureKind
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