pub struct FineTuneMethod {
    pub type: String,
    pub supervised: FineTuneSupervisedMethod,
    pub dpo: FineTuneDPOMethod,
}Expand description
The method used for fine-tuning.
Fields§
§type: StringThe type of method.
supervised: FineTuneSupervisedMethod§dpo: FineTuneDPOMethodTrait Implementations§
Source§impl Clone for FineTuneMethod
 
impl Clone for FineTuneMethod
Source§fn clone(&self) -> FineTuneMethod
 
fn clone(&self) -> FineTuneMethod
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for FineTuneMethod
impl RefUnwindSafe for FineTuneMethod
impl Send for FineTuneMethod
impl Sync for FineTuneMethod
impl Unpin for FineTuneMethod
impl UnwindSafe for FineTuneMethod
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