mlflow (version 1.9.0)

mlflow_search_runs: Search Runs

Description

Search for runs that satisfy expressions. Search expressions can use Metric and Param keys.

Usage

mlflow_search_runs(
  filter = NULL,
  run_view_type = c("ACTIVE_ONLY", "DELETED_ONLY", "ALL"),
  experiment_ids = NULL,
  order_by = list(),
  client = NULL
)

Arguments

filter

A filter expression over params, metrics, and tags, allowing returning a subset of runs. The syntax is a subset of SQL which allows only ANDing together binary operations between a param/metric/tag and a constant.

run_view_type

Run view type.

experiment_ids

List of string experiment IDs (or a single string experiment ID) to search over. Attempts to use active experiment if not specified.

order_by

List of properties to order by. Example: "metrics.acc DESC".

client

(Optional) An MLflow client object returned from mlflow_client. If specified, MLflow will use the tracking server associated with the passed-in client. If unspecified (the common case), MLflow will use the tracking server associated with the current tracking URI.