pub struct SupervisedHyperparameters {
pub batch_size: Option<String>,
pub learning_rate_multiplier: Option<String>,
pub n_epochs: Option<String>,
}Expand description
The hyperparameters used for the fine-tuning job.
Fields§
§batch_size: Option<String>Number of examples in each batch.
learning_rate_multiplier: Option<String>Scaling factor for the learning rate.
n_epochs: Option<String>The number of epochs to train the model for.
Trait Implementations§
Source§impl Clone for SupervisedHyperparameters
impl Clone for SupervisedHyperparameters
Source§fn clone(&self) -> SupervisedHyperparameters
fn clone(&self) -> SupervisedHyperparameters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SupervisedHyperparameters
impl Debug for SupervisedHyperparameters
Source§impl<'de> Deserialize<'de> for SupervisedHyperparameters
impl<'de> Deserialize<'de> for SupervisedHyperparameters
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
Auto Trait Implementations§
impl Freeze for SupervisedHyperparameters
impl RefUnwindSafe for SupervisedHyperparameters
impl Send for SupervisedHyperparameters
impl Sync for SupervisedHyperparameters
impl Unpin for SupervisedHyperparameters
impl UnsafeUnpin for SupervisedHyperparameters
impl UnwindSafe for SupervisedHyperparameters
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