pub enum FineTuneDpoHyperparametersNEpochs {
Auto,
Integer(u64),
}
Expand description
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
Variants§
Trait Implementations§
Source§impl Clone for FineTuneDpoHyperparametersNEpochs
impl Clone for FineTuneDpoHyperparametersNEpochs
Source§fn clone(&self) -> FineTuneDpoHyperparametersNEpochs
fn clone(&self) -> FineTuneDpoHyperparametersNEpochs
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<'de> Deserialize<'de> for FineTuneDpoHyperparametersNEpochs
impl<'de> Deserialize<'de> for FineTuneDpoHyperparametersNEpochs
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 FineTuneDpoHyperparametersNEpochs
impl PartialEq for FineTuneDpoHyperparametersNEpochs
Source§fn eq(&self, other: &FineTuneDpoHyperparametersNEpochs) -> bool
fn eq(&self, other: &FineTuneDpoHyperparametersNEpochs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for FineTuneDpoHyperparametersNEpochs
impl StructuralPartialEq for FineTuneDpoHyperparametersNEpochs
Auto Trait Implementations§
impl Freeze for FineTuneDpoHyperparametersNEpochs
impl RefUnwindSafe for FineTuneDpoHyperparametersNEpochs
impl Send for FineTuneDpoHyperparametersNEpochs
impl Sync for FineTuneDpoHyperparametersNEpochs
impl Unpin for FineTuneDpoHyperparametersNEpochs
impl UnwindSafe for FineTuneDpoHyperparametersNEpochs
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