how to choose an instance type for a sagemaker testing/inference?

0

looking at few examples, for training in sagemaker . are there some guidelines based on the model size, data to be trained , what type of instance cpu/gpu to use? also, can one use spot instances ( may be with multiple gpu cores)?

已提問 2 年前檢視次數 1250 次
2 個答案
1

Yes, you can use spot instances. I recommend it, and always run training on spot instances. If you are using the Python SDK, add the following parameters to your Estimator:

       use_spot_instances=True,
       max_run={maximum runtime here},
       max_wait={maximum wait time},
       checkpoint_s3_uri={URI of your bucket and folder },

See the documentation for more details here: https://docs.aws.amazon.com/sagemaker/latest/dg/model-managed-spot-training.html

As far as instance types are concerned, the individual algorithms contain some initial recommendations for instances types: https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html

For example, see the EC2 Instance Recommendation for the Image Classification Algorithm: https://docs.aws.amazon.com/sagemaker/latest/dg/image-classification.html

There was a presentation at re:Invent 2020 - How to choose the right instance type for ML inference: https://www.youtube.com/watch?v=0DSgXTN7ehg

Hope this helps

已回答 2 年前
1

And for the selection of instance type for inference, you might want to look at Amazon SageMaker Inference Recommender:

https://docs.aws.amazon.com/sagemaker/latest/dg/inference-recommender.html

AWS
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南