pub struct FineTuningJobCheckpoint {
pub id: String,
pub created_at: u64,
pub fine_tuned_model_checkpoint: String,
pub step_number: u64,
pub metrics: FineTuningJobCheckpointMetrics,
pub fine_tuning_job_id: 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: u64
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: u64
The step number that the checkpoint was created at.
metrics: FineTuningJobCheckpointMetrics
Metrics at the step number during the fine-tuning job.
fine_tuning_job_id: String
The name of the fine-tuning job that this checkpoint was created from.
Implementations§
Source§impl FineTuningJobCheckpoint
impl FineTuningJobCheckpoint
Sourcepub fn builder() -> FineTuningJobCheckpointBuilder<((), (), (), (), (), ())>
pub fn builder() -> FineTuningJobCheckpointBuilder<((), (), (), (), (), ())>
Create a builder for building FineTuningJobCheckpoint
.
On the builder, call .id(...)
, .created_at(...)
, .fine_tuned_model_checkpoint(...)
, .step_number(...)
, .metrics(...)
(optional), .fine_tuning_job_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of FineTuningJobCheckpoint
.
Trait Implementations§
Source§impl Clone for FineTuningJobCheckpoint
impl Clone for FineTuningJobCheckpoint
Source§fn clone(&self) -> FineTuningJobCheckpoint
fn clone(&self) -> FineTuningJobCheckpoint
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more