pub struct FineTuningJobCheckpointMetrics {
pub step: u32,
pub train_loss: f32,
pub train_mean_token_accuracy: f32,
pub valid_loss: f32,
pub valid_mean_token_accuracy: f32,
pub full_valid_loss: f32,
pub full_valid_mean_token_accuracy: f32,
}
Fields§
§step: u32
§train_loss: f32
§train_mean_token_accuracy: f32
§valid_loss: f32
§valid_mean_token_accuracy: f32
§full_valid_loss: f32
§full_valid_mean_token_accuracy: f32
Trait Implementations§
Source§impl Clone for FineTuningJobCheckpointMetrics
impl Clone for FineTuningJobCheckpointMetrics
Source§fn clone(&self) -> FineTuningJobCheckpointMetrics
fn clone(&self) -> FineTuningJobCheckpointMetrics
Returns a copy 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 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
Source§impl PartialEq for FineTuningJobCheckpointMetrics
impl PartialEq for FineTuningJobCheckpointMetrics
Source§fn eq(&self, other: &FineTuningJobCheckpointMetrics) -> bool
fn eq(&self, other: &FineTuningJobCheckpointMetrics) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FineTuningJobCheckpointMetrics
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