{ "job_id": "<string>", "execution_id": "<string>", "status": "<string>", "estimated_duration": 123, "resource_allocation": { "compute_tier": "<string>", "gpu_count": 123, "memory_gb": 123, "estimated_cost": 123 }, "execution_timeline": { "queue_position": 123, "estimated_start_time": {}, "estimated_completion_time": {}, "milestone_schedule": [ {} ] }, "monitoring_info": { "progress_url": "<string>", "webhook_configured": true, "log_retention_days": 123 }, "executed_at": {}, "executed_by": "<string>" }
Start execution of a created training job
Show override properties
minimal
standard
high_performance
Show notification properties
milestone_only
periodic
detailed
Show confirmation properties
queued
preparing
training
Show resource properties
Show timeline properties
Show monitoring properties
curl -X POST https://api.judge.example.com/training-jobs/train_job_123/execute \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "execution_override": { "priority": "high", "resource_allocation": "high_performance" }, "confirmation": { "acknowledge_cost": true, "backup_confirmation": true } }'
curl -X POST https://api.judge.example.com/training-jobs/train_job_456/execute \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "execution_override": { "resource_allocation": "minimal", "max_duration_minutes": 120 }, "confirmation": { "acknowledge_cost": true } }'
curl -X POST https://api.judge.example.com/training-jobs/train_job_running/execute \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{}'
curl -X POST https://api.judge.example.com/training-jobs/train_job_expensive/execute \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "execution_override": { "resource_allocation": "high_performance" } }'