pub struct FineTuningJobCheckpoint {
pub id: String,
pub object: String,
pub created_at: i64,
pub fine_tuned_model_checkpoint: String,
pub step_number: u32,
pub metrics: CheckpointMetrics,
pub fine_tuning_job_id: String,
}Expand description
Training checkpoint from a fine-tuning job
Fields§
§id: StringThe identifier of the checkpoint
object: StringThe object type, which is always “fine_tuning.job.checkpoint”
created_at: i64The Unix timestamp (in seconds) when the checkpoint was created
fine_tuned_model_checkpoint: StringThe name of the fine-tuned model checkpoint
step_number: u32The step number that the checkpoint was created at
metrics: CheckpointMetricsMetrics recorded at this checkpoint
fine_tuning_job_id: StringThe ID of the fine-tuning job that this checkpoint belongs to
Trait Implementations§
Source§impl Clone for FineTuningJobCheckpoint
impl Clone for FineTuningJobCheckpoint
Source§fn clone(&self) -> FineTuningJobCheckpoint
fn clone(&self) -> FineTuningJobCheckpoint
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 Debug for FineTuningJobCheckpoint
impl Debug for FineTuningJobCheckpoint
Source§impl<'de> Deserialize<'de> for FineTuningJobCheckpoint
impl<'de> Deserialize<'de> for FineTuningJobCheckpoint
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 FineTuningJobCheckpoint
impl RefUnwindSafe for FineTuningJobCheckpoint
impl Send for FineTuningJobCheckpoint
impl Sync for FineTuningJobCheckpoint
impl Unpin for FineTuningJobCheckpoint
impl UnwindSafe for FineTuningJobCheckpoint
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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