View source: R/model-registry.R
mlflow_search_registered_models | R Documentation |
Retrieves a list of registered models.
mlflow_search_registered_models(
filter = NULL,
max_results = 100,
order_by = list(),
page_token = NULL,
client = NULL
)
filter |
A filter expression used to identify specific registered models. The syntax is a subset of SQL which allows only ANDing together binary operations. Example: "name = 'my_model_name' and tag.key = 'value1'" |
max_results |
Maximum number of registered models to retrieve. |
order_by |
List of registered model properties to order by. Example: "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.