pub struct FineTuningJobCheckpoint {
pub id: String,
pub created_at: i64,
pub fine_tuned_model_checkpoint: String,
pub step_number: i64,
pub metrics: FineTuningJobCheckpoint_Metrics,
pub fine_tuning_job_id: String,
pub object: String,
}
Expand description
The fine_tuning.job.checkpoint
object represents a model checkpoint for a
fine-tuning job that is ready to use.
Fields§
§id: String
The checkpoint identifier, which can be referenced in the API endpoints.
created_at: i64
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.
step_number: i64
The step number that the checkpoint was created at.
metrics: FineTuningJobCheckpoint_Metrics
§fine_tuning_job_id: String
The name of the fine-tuning job that this checkpoint was created from.
object: String
The object type, which is always “fine_tuning.job.checkpoint”.
Trait Implementations§
Source§impl Clone for FineTuningJobCheckpoint
impl Clone for FineTuningJobCheckpoint
Source§fn clone(&self) -> FineTuningJobCheckpoint
fn clone(&self) -> FineTuningJobCheckpoint
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 moreAuto 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