Amazon SageMaker
Overview
Real-life Use Cases
Terraform Example
resource "aws_sagemaker_notebook_instance" "ml_notebook" {
name = "ml-notebook"
instance_type = "ml.t2.medium"
role_arn = aws_iam_role.sagemaker_execution.arn
}AWS CLI Example
aws sagemaker create-notebook-instance --notebook-instance-name ml-notebook --instance-type ml.t2.medium --role-arn arn:aws:iam::123456789012:role/SageMakerExecutionRoleBest Practices
Common Pitfalls
Last updated