1

How can I enable monitoring and log payload for a model deployed on AWS SageMaker? I am using a classification model and will be outputting predicted class and confidence. How should i configure this in UI or sdk?

2 Answers2

0

The configuration process in UI:

  1. Click second tab on the left and select AWS SageMaker enter image description here

  2. Provide the access key info and the region of the AWS SageMaker enter image description here

  3. Select the deployment(s) you want to monitor

  4. Use the code snippet provided in a Watson Studio notebook to set up the payload schema.

  5. Configure the fairness and accuracy monitors in the UI. This step should be the same as configuring deployments from any other environments (e.g. WML, SPSS)

charles gomes
  • 2,145
  • 10
  • 15
Bufan Zeng
  • 33
  • 4
0

SageMaker sends all logs produced by your model container to your CloudWatch, under log group named /aws/sagemaker/Endpoints/[EndpointName]. With that said, you could simply configure your model to log inference payloads and outputs, and they will show up in CloudWatch logs.

DancingInRain
  • 21
  • 1
  • 2