pub struct FineTuningJobCheckpoint_Metrics {
pub step: Option<f64>,
pub train_loss: Option<f64>,
pub train_mean_token_accuracy: Option<f64>,
pub valid_loss: Option<f64>,
pub valid_mean_token_accuracy: Option<f64>,
pub full_valid_loss: Option<f64>,
pub full_valid_mean_token_accuracy: Option<f64>,
}
Expand description
Metrics at the step number during the fine-tuning job.
Fields§
§step: Option<f64>
§train_loss: Option<f64>
§train_mean_token_accuracy: Option<f64>
§valid_loss: Option<f64>
§valid_mean_token_accuracy: Option<f64>
§full_valid_loss: Option<f64>
§full_valid_mean_token_accuracy: Option<f64>
Trait Implementations§
Source§impl Clone for FineTuningJobCheckpoint_Metrics
impl Clone for FineTuningJobCheckpoint_Metrics
Source§fn clone(&self) -> FineTuningJobCheckpoint_Metrics
fn clone(&self) -> FineTuningJobCheckpoint_Metrics
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 Default for FineTuningJobCheckpoint_Metrics
impl Default for FineTuningJobCheckpoint_Metrics
Source§fn default() -> FineTuningJobCheckpoint_Metrics
fn default() -> FineTuningJobCheckpoint_Metrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FineTuningJobCheckpoint_Metrics
impl RefUnwindSafe for FineTuningJobCheckpoint_Metrics
impl Send for FineTuningJobCheckpoint_Metrics
impl Sync for FineTuningJobCheckpoint_Metrics
impl Unpin for FineTuningJobCheckpoint_Metrics
impl UnwindSafe for FineTuningJobCheckpoint_Metrics
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