Skip to content

Creates a Run.

POST
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/runs/create
id
required
One of:
string

The ID or URL-encoded path of the project

Example
1
Media type application/json
object
experiment_id
required

Id for the experiment, relative to the project

integer
nullable
start_time

Unix timestamp in milliseconds of when the run started.

integer
0 nullable
user_id

This will be ignored

string
nullable
tags

Tags are stored, but not displayed

array
nullable
run_name

A name for this run

string
nullable

Created

Media type application/json
object
info
object
run_id
string
run_uuid
string
experiment_id
string
start_time

Unix timestamp in milliseconds

integer
end_time

Unix timestamp in milliseconds

integer
run_name
string
status
string
artifact_uri
string
lifecycle_stage
string
user_id
string
data
object
Example
{
"info": {
"status": "FINISHED",
"lifecycle_stage": "active"
}
}

Bad Request

Not Found