Amazon SageMaker

3.7.1 · active · verified Wed Apr 08

Amazon SageMaker is an open-source library for training and deploying models on Amazon SageMaker. The current version is 3.7.1, and it is released regularly with new features and bug fixes. It requires Python version 3.9 or higher.

Warnings

Install

Imports

Quickstart

Quickstart example to get the execution role using Amazon SageMaker.

import sagemaker
from sagemaker import get_execution_role

role = get_execution_role()
print(role)

view raw JSON →