Creates a Run.
POST
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/runs/create
MLFlow Runs map to GitLab Candidates. https://www.mlflow.org/docs/2.19.0/rest-api.html#create-run
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
experiment_id
required
Id for the experiment, relative to the project
integer
start_time
Unix timestamp in milliseconds of when the run started.
integer
user_id
This will be ignored
string
tags
Tags are stored, but not displayed
array
run_name
A name for this run
string
Responses
Section titled “Responses”Created
Media typeapplication/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
metrics
Array<object>
object
key
string
value
number
timestamp
Unix timestamp in milliseconds
integer
step
integer
params
Array<object>
object
key
string
value
string
tags
Array<object>
object
key
string
value
string
Example
{ "info": { "status": "FINISHED", "lifecycle_stage": "active" }}Bad Request
Not Found