pub struct FineTuningJobCheckpoint {
pub created_at: i32,
pub fine_tuned_model_checkpoint: String,
pub fine_tuning_job_id: String,
pub id: String,
pub metrics: FineTuningJobCheckpointMetrics,
pub object: String,
pub step_number: i32,
}
Fields§
§created_at: i32
The Unix timestamp (in seconds) for when the checkpoint was created.
fine_tuned_model_checkpoint: String
The name of the fine-tuned checkpoint model that is created.
fine_tuning_job_id: String
The name of the fine-tuning job that this checkpoint was created from.
id: String
The checkpoint identifier, which can be referenced in the API endpoints.
metrics: FineTuningJobCheckpointMetrics
§object: String
The object type, which is always "fine_tuning.job.checkpoint".
step_number: i32
The step number that the checkpoint was created at.
Trait Implementations§
Source§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<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