pub struct FineTuningJobCheckpointMetrics {
pub full_valid_loss: Option<f32>,
pub full_valid_mean_token_accuracy: Option<f32>,
pub step: Option<f32>,
pub train_loss: Option<f32>,
pub train_mean_token_accuracy: Option<f32>,
pub valid_loss: Option<f32>,
pub valid_mean_token_accuracy: Option<f32>,
}
Fields§
§full_valid_loss: Option<f32>
§full_valid_mean_token_accuracy: Option<f32>
§step: Option<f32>
§train_loss: Option<f32>
§train_mean_token_accuracy: Option<f32>
§valid_loss: Option<f32>
§valid_mean_token_accuracy: Option<f32>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FineTuningJobCheckpointMetrics
impl<'de> Deserialize<'de> for FineTuningJobCheckpointMetrics
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 FineTuningJobCheckpointMetrics
impl RefUnwindSafe for FineTuningJobCheckpointMetrics
impl Send for FineTuningJobCheckpointMetrics
impl Sync for FineTuningJobCheckpointMetrics
impl Unpin for FineTuningJobCheckpointMetrics
impl UnwindSafe for FineTuningJobCheckpointMetrics
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