pub enum FineTuneMethodType {
Supervised,
Dpo,
Reinforcement,
}
Expand description
The type of method. Is either supervised
, dpo
, or reinforcement
.
Variants§
Trait Implementations§
Source§impl Clone for FineTuneMethodType
impl Clone for FineTuneMethodType
Source§fn clone(&self) -> FineTuneMethodType
fn clone(&self) -> FineTuneMethodType
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 FineTuneMethodType
impl Debug for FineTuneMethodType
Source§impl<'de> Deserialize<'de> for FineTuneMethodType
impl<'de> Deserialize<'de> for FineTuneMethodType
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 FineTuneMethodType
impl PartialEq for FineTuneMethodType
Source§impl Serialize for FineTuneMethodType
impl Serialize for FineTuneMethodType
impl Copy for FineTuneMethodType
impl StructuralPartialEq for FineTuneMethodType
Auto Trait Implementations§
impl Freeze for FineTuneMethodType
impl RefUnwindSafe for FineTuneMethodType
impl Send for FineTuneMethodType
impl Sync for FineTuneMethodType
impl Unpin for FineTuneMethodType
impl UnwindSafe for FineTuneMethodType
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