Skip to main content
GET
/
jobs
/
{job_id}
/
change-summary
{
  "job_id": "<string>",
  "changes_summary": {
    "criteria_modifications": [
      {}
    ],
    "performance_improvements": {},
    "model_updates": {}
  },
  "before_after_comparison": {},
  "generated_at": {}
}

Overview

Retrieves a summary of changes and improvements made during a training job, including performance deltas and specific modifications.

Path Parameters

job_id
string
required
Unique identifier of the training job

Response

job_id
string
required
Training job ID
changes_summary
object
required
Summary of changes made
before_after_comparison
object
required
Before and after performance comparison
generated_at
datetime
required
Summary generation timestamp

Examples

curl -X GET https://api.judge.example.com/jobs/train_job_123/change-summary \
  -H "Authorization: Bearer YOUR_API_KEY"