import { JobIn } from "@mistralai/mistralai/models/components";
let value: JobIn = {
model: "open-mistral-7b",
hyperparameters: {},
};
Field | Type | Required | Description |
---|---|---|---|
model |
components.FineTuneableModel | ✔️ | The name of the model to fine-tune. |
trainingFiles |
components.TrainingFile[] | ➖ | N/A |
validationFiles |
string[] | ➖ | A list containing the IDs of uploaded files that contain validation data. If you provide these files, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in checkpoints when getting the status of a running fine-tuning job. The same data should not be present in both train and validation files. |
hyperparameters |
components.TrainingParametersIn | ✔️ | The fine-tuning hyperparameter settings used in a fine-tune job. |
suffix |
string | ➖ | A string that will be added to your fine-tuning model name. For example, a suffix of "my-great-model" would produce a model name like ft:open-mistral-7b:my-great-model:xxx... |
integrations |
components.JobInIntegrations[] | ➖ | A list of integrations to enable for your fine-tuning job. |
repositories |
components.JobInRepositories[] | ➖ | N/A |
autoStart |
boolean | ➖ | This field will be required in a future release. |