v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Model Lab API

Get a Model Lab run

Get a single Model Lab run by its ID.

get/api/v2/model-lab-api/runs/{run_id}

Path parameters

run_idinteger required
Example:42

The ID of the Model Lab run.

Response

OK

Example response

{
  "data": {
    "attributes": {
      "created_at": "2024-01-20T10:00:00Z",
      "description": "Fine-tuning run with custom hyperparameters.",
      "metric_summaries": [
        {
          "count": 100,
          "key": "accuracy"
        }
      ],
      "mlflow_artifact_location": "s3://bucket/active-run",
      "name": "training-run-1",
      "params": [
        {
          "key": "algorithm",
          "value": "gpt4"
        }
      ],
      "project_id": 101,
      "started_at": "2024-01-20T10:00:00Z",
      "status": "running",
      "tags": [
        {
          "key": "model",
          "value": "opus"
        }
      ],
      "updated_at": "2024-01-20T11:00:00Z"
    },
    "id": "42",
    "type": "runs"
  }
}