skip to Main Content

How to get programatically the list of sagemaker instance types ml.*? – Amazon Web Sevices

With the AWS CLI ec2 describe-instance-types I can get a list of all the EC2 instance types but Sagemaker Instance Types like ml.t3.medium, ml.t3.large, ml.m5.xlarge, etc are not there. aws ec2 describe-instance-types --filters "Name=instance-type,Values=ml.*" --query "InstanceTypes[].{Type: InstanceType, MaxENI: NetworkInfo.MaximumNetworkInterfaces, IPv4addr:…

VIEW QUESTION

ERROR:root:Unable to determine the Neptune ML IAM Role – Amazon Web Sevices

When trying to run one of the Neptune-ML examples in a notebook instance when running the line endpoints=neptune_ml.setup_pretrained_endpoints(s3_bucket_uri, setup_node_classification, setup_node_regression, setup_link_prediction, setup_edge_classification, setup_edge_regression) it returns None, and I can see the following error in the logs: ERROR:root:Unable to determine the…

VIEW QUESTION

How to use AWS Sagemaker with newer version of Huggingface Estimator? – Docker

When trying to use Huggingface estimator on sagemaker, Run training on Amazon SageMaker e.g. # create the Estimator huggingface_estimator = HuggingFace( entry_point='train.py', source_dir='./scripts', instance_type='ml.p3.2xlarge', instance_count=1, role=role, transformers_version='4.17', pytorch_version='1.10', py_version='py38', hyperparameters = hyperparameters ) When I tried to increase the version…

VIEW QUESTION
Back To Top
Search