List Model Metadata
sagemaker_list_model_metadata | R Documentation |
Lists the domain, framework, task, and model name of standard machine learning models found in common model zoos¶
Description¶
Lists the domain, framework, task, and model name of standard machine learning models found in common model zoos.
Usage¶
sagemaker_list_model_metadata(SearchExpression, NextToken, MaxResults)
Arguments¶
SearchExpression |
One or more filters that searches for the specified resource or resources in a search. All resource objects that satisfy the expression's condition are included in the search results. Specify the Framework, FrameworkVersion, Domain or Task to filter supported. Filter names and values are case-sensitive. |
NextToken |
If the response to a previous
|
MaxResults |
The maximum number of models to return in the response. |
Value¶
A list with the following syntax:
list(
ModelMetadataSummaries = list(
list(
Domain = "string",
Framework = "string",
Task = "string",
Model = "string",
FrameworkVersion = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_model_metadata(
SearchExpression = list(
Filters = list(
list(
Name = "Domain"|"Framework"|"Task"|"FrameworkVersion",
Value = "string"
)
)
),
NextToken = "string",
MaxResults = 123
)