The fine_tuning.job.checkpoint
object represents a model checkpoint for a fine-tuning job that is ready to use.
import { FineTuningJobCheckpoint } from "argot-open-ai/models/components";
let value: FineTuningJobCheckpoint = {
id: "<id>",
createdAt: 975522,
fineTunedModelCheckpoint: "<value>",
stepNumber: 855804,
metrics: {},
fineTuningJobId: "<id>",
object: "fine_tuning.job.checkpoint",
};
Field | Type | Required | Description |
---|---|---|---|
id |
string | ✔️ | The checkpoint identifier, which can be referenced in the API endpoints. |
createdAt |
number | ✔️ | The Unix timestamp (in seconds) for when the checkpoint was created. |
fineTunedModelCheckpoint |
string | ✔️ | The name of the fine-tuned checkpoint model that is created. |
stepNumber |
number | ✔️ | The step number that the checkpoint was created at. |
metrics |
components.Metrics | ✔️ | Metrics at the step number during the fine-tuning job. |
fineTuningJobId |
string | ✔️ | The name of the fine-tuning job that this checkpoint was created from. |
object |
components.FineTuningJobCheckpointObject | ✔️ | The object type, which is always "fine_tuning.job.checkpoint". |