For fine-tuning jobs that have failed
, this will contain more information on the cause of the failure.
import { FineTuningJobError } from "argot-open-ai/models/components";
let value: FineTuningJobError = {
code: "<value>",
message: "<value>",
param: "<value>",
};
Field | Type | Required | Description |
---|---|---|---|
code |
string | ✔️ | A machine-readable error code. |
message |
string | ✔️ | A human-readable error message. |
param |
string | ✔️ | The parameter that was invalid, usually training_file or validation_file . This field will be null if the failure was not parameter-specific. |