mlflow_search_experiments: Search Experiments

View source: R/tracking-experiments.R

mlflow_search_experimentsR Documentation

Search Experiments

Description

Search for experiments that satisfy specified criteria.

Usage

mlflow_search_experiments(
  filter = NULL,
  experiment_view_type = c("ACTIVE_ONLY", "DELETED_ONLY", "ALL"),
  max_results = 1000,
  order_by = list(),
  page_token = NULL,
  client = NULL
)

Arguments

filter

A filter expression used to identify specific experiments. The syntax is a subset of SQL which allows only ANDing together binary operations. Examples: "attribute.name = 'MyExperiment'", "tags.problem_type = 'iris_regression'"

experiment_view_type

Experiment view type. Only experiments matching this view type are returned.

max_results

Maximum number of experiments to retrieve.

order_by

List of properties to order by. Example: "attribute.name".

page_token

Pagination token to go to the next page based on a previous query.

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.


mlflow documentation built on Nov. 23, 2023, 9:13 a.m.