-
Notifications
You must be signed in to change notification settings - Fork 7k
Description
Link to the notebook
sagemaker-core/introductory-blog-sagemaker-core/introductory-blog-sagemaker-core.ipynb
Describe the bug
-
broken code in block 3 . "s3_client = " is incomplete and is not used in the rest of the notebook
-
missing code block , in create endpoint configuration for real-time inference
sagemaker_endpoint = Endpoint.create(
endpoint_name=endpoint_name,
endpoint_config_name=endpoint_config.get_name(),
) -
In test live endpoint
Need to "import boto3"
4 In test live endpoint
Key = "sagemaker-core-intro-blog/processing/output/train/test.csv", should be
Key = "sagemaker-core-intro-blog/processing/output/test/test.csv",
- In Invoke the endpoint
result = res['body'].read().decode("utf-8") should be
result = res.body.read().decode("utf-8")
- In invoke the endpoint
print_performance_metrics is not defined.
To reproduce
A clear, step-by-step set of instructions to reproduce the bug.
Logs
If applicable, add logs to help explain your problem.
You may also attach an .ipynb file to this issue if it includes relevant logs or output.