pub enum FineTuneSupervisedHyperparametersBatchSize {
Auto,
Integer(u64),
}
Expand description
Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.
Variants§
Trait Implementations§
Source§impl Clone for FineTuneSupervisedHyperparametersBatchSize
impl Clone for FineTuneSupervisedHyperparametersBatchSize
Source§fn clone(&self) -> FineTuneSupervisedHyperparametersBatchSize
fn clone(&self) -> FineTuneSupervisedHyperparametersBatchSize
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 FineTuneSupervisedHyperparametersBatchSize
impl<'de> Deserialize<'de> for FineTuneSupervisedHyperparametersBatchSize
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 FineTuneSupervisedHyperparametersBatchSize
impl PartialEq for FineTuneSupervisedHyperparametersBatchSize
Source§fn eq(&self, other: &FineTuneSupervisedHyperparametersBatchSize) -> bool
fn eq(&self, other: &FineTuneSupervisedHyperparametersBatchSize) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for FineTuneSupervisedHyperparametersBatchSize
impl StructuralPartialEq for FineTuneSupervisedHyperparametersBatchSize
Auto Trait Implementations§
impl Freeze for FineTuneSupervisedHyperparametersBatchSize
impl RefUnwindSafe for FineTuneSupervisedHyperparametersBatchSize
impl Send for FineTuneSupervisedHyperparametersBatchSize
impl Sync for FineTuneSupervisedHyperparametersBatchSize
impl Unpin for FineTuneSupervisedHyperparametersBatchSize
impl UnwindSafe for FineTuneSupervisedHyperparametersBatchSize
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