Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 4.11 KB

finetuningjobcheckpoint.md

File metadata and controls

32 lines (25 loc) · 4.11 KB

FineTuningJobCheckpoint

The fine_tuning.job.checkpoint object represents a model checkpoint for a fine-tuning job that is ready to use.

Example Usage

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",
};

Fields

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".