pub enum LearningStrategy {
Supervised,
ReinforcementLearning,
Online,
Transfer,
}Expand description
Learning strategy.
Variants§
Supervised
Supervised learning from labeled examples
ReinforcementLearning
Reinforcement learning from rewards
Online
Online learning with continuous updates
Transfer
Transfer learning from pre-trained models
Trait Implementations§
Source§impl Clone for LearningStrategy
impl Clone for LearningStrategy
Source§fn clone(&self) -> LearningStrategy
fn clone(&self) -> LearningStrategy
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 LearningStrategy
impl Debug for LearningStrategy
Source§impl<'de> Deserialize<'de> for LearningStrategy
impl<'de> Deserialize<'de> for LearningStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LearningStrategy
impl PartialEq for LearningStrategy
Source§impl Serialize for LearningStrategy
impl Serialize for LearningStrategy
impl Copy for LearningStrategy
impl Eq for LearningStrategy
impl StructuralPartialEq for LearningStrategy
Auto Trait Implementations§
impl Freeze for LearningStrategy
impl RefUnwindSafe for LearningStrategy
impl Send for LearningStrategy
impl Sync for LearningStrategy
impl Unpin for LearningStrategy
impl UnwindSafe for LearningStrategy
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