Skip to main content

model_metadatas

Creates, updates, deletes, gets or lists a model_metadatas resource.

Overview

Namemodel_metadatas
TypeResource
Idaws.sagemaker.model_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domainstringThe machine learning domain of the model.
frameworkstringThe machine learning framework of the model.
framework_versionstringThe framework version of the model.
modelstringThe name of the model.
taskstringThe machine learning task of the model.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_model_metadataselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;