Compare metrics across multiple runs
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/compare \
--header 'Authorization: Bearer <token>'{
"projectName": "<string>",
"logName": "<string>",
"comparisonUrl": "<string>",
"runs": [
{
"runId": 123,
"runName": "<string>",
"url": "<string>",
"status": "<string>",
"stats": {
"count": 123,
"min": 123,
"max": 123,
"mean": 123,
"final": 123
},
"config": null
}
]
}Runs
Compare metrics across multiple runs
Returns per-run aggregates (count, min, max, mean, final) for a single metric across multiple runs, read from the pre-computed summaries table. Raw, no editorializing β interpretation is the callerβs job.
GET
/
api
/
runs
/
compare
Compare metrics across multiple runs
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/compare \
--header 'Authorization: Bearer <token>'{
"projectName": "<string>",
"logName": "<string>",
"comparisonUrl": "<string>",
"runs": [
{
"runId": 123,
"runName": "<string>",
"url": "<string>",
"status": "<string>",
"stats": {
"count": 123,
"min": 123,
"max": 123,
"mean": 123,
"final": 123
},
"config": null
}
]
}Authorizations
API key obtained from the mlop dashboard
Query Parameters
Comma-separated list of run IDs to compare (e.g., '1,2,5')
Project name
Metric name to compare (e.g., 'train/loss')
Was this page helpful?
βI