import { FineTune } from "https://deno.land/x/openai@v4.24.3/resources/fine-tunes.ts";
Interfaces
The hyperparameters used for the fine-tuning job. See the fine-tuning guide for more details. |
import { type FineTune } from "https://deno.land/x/openai@v4.24.3/resources/fine-tunes.ts";
The FineTune
object represents a legacy fine-tune job that has been created
through the API.
Properties
hyperparams: FineTune.Hyperparams
The hyperparameters used for the fine-tuning job. See the fine-tuning guide for more details.
The current status of the fine-tuning job, which can be either created
,
running
, succeeded
, failed
, or cancelled
.
optional
events: Array<FineTuneEvent>The list of events that have been observed in the lifecycle of the FineTune job.