model_metadatas
Creates, updates, deletes, gets or lists a model_metadatas resource.
Overview
| Name | model_metadatas |
| Type | Resource |
| Id | aws.sagemaker.model_metadatas |
Fields
The following fields are returned by SELECT queries:
- list_model_metadata
| Name | Datatype | Description |
|---|---|---|
domain | string | The machine learning domain of the model. |
framework | string | The machine learning framework of the model. |
framework_version | string | The framework version of the model. |
model | string | The name of the model. |
task | string | The machine learning task of the model. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_model_metadata | select | region | Lists the domain, framework, task, and model name of standard machine learning models found in common model zoos. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_model_metadata
Lists the domain, framework, task, and model name of standard machine learning models found in common model zoos.
SELECT
domain,
framework,
framework_version,
model,
task
FROM aws.sagemaker.model_metadatas
WHERE region = '{{ region }}' -- required
;