Mistral AI · Schema

TrainingJob

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
id string The unique identifier for the training job.
job_type string The type of training job.
status string The current status of the training job.
model_config object
hyperparameters object
created_at integer Unix timestamp when the job was created.
modified_at integer Unix timestamp when the job was last modified.
output_model string The ID of the resulting trained model, available after success.
View JSON Schema on GitHub

JSON Schema

mistral-ai-trainingjob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrainingJob",
  "title": "TrainingJob",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier for the training job."
    },
    "job_type": {
      "type": "string",
      "description": "The type of training job."
    },
    "status": {
      "type": "string",
      "description": "The current status of the training job.",
      "enum": [
        "QUEUED",
        "VALIDATING",
        "RUNNING",
        "SUCCESS",
        "FAILED",
        "CANCELLED"
      ]
    },
    "model_config": {
      "$ref": "#/components/schemas/ModelConfig"
    },
    "hyperparameters": {
      "$ref": "#/components/schemas/ForgeHyperparameters"
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp when the job was created."
    },
    "modified_at": {
      "type": "integer",
      "description": "Unix timestamp when the job was last modified."
    },
    "output_model": {
      "type": "string",
      "description": "The ID of the resulting trained model, available after success."
    }
  }
}