Logs multiple parameters and metrics.
POST
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/runs/log-batch
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ”Request Body required
Section titled “ Request Body required ” Media type application/json
object
run_id
required
UUID of the run.
string
metrics
Array that contains metric information
Array<object>
object
key
required
Name for the metric.
string
value
required
Value of the metric.
number
timestamp
required
Unix timestamp in milliseconds when metric was recorded
integer
step
Step at which the metric was recorded
integer
params
Array that contains parameter information
Array<object>
object
key
required
Name for the metric.
string
value
required
Value of the metric.
string
Example generated
{ "run_id": "example", "metrics": [ { "key": "example", "value": 1, "timestamp": 1, "step": 1 } ], "params": [ { "key": "example", "value": "example" } ]}Responses
Section titled “ Responses ”Created
Bad Request
Not Found