fshabashev
fshabashev

Reputation: 677

Does AWS Sagemaker charges you per API request?

AWS pricing page describes how much it costs per hour to run AWS Sagemaker for online realtime inference. https://aws.amazon.com/sagemaker/pricing/

But AWS usually also charges for API requests. Do they charge extra per every API inference request to the Sagemaker model?

Upvotes: 1

Views: 890

Answers (1)

big lep
big lep

Reputation: 887

I am on the AWS SageMaker team. For "Real-Time Inference" you are only charged for:

  1. usage of the instance types you choose (instance hours)
  2. storage attached to those instance (GB storage hours)
  3. data in and out of your Endpoint (Bytes in/out)

See "Pricing Example #6: Real-Time Inference" as well.

Upvotes: 1

Related Questions