View source: R/tracking-experiments.R
mlflow_search_experiments | R Documentation |
Search for experiments that satisfy specified criteria.
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
)
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.