We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The debugger lab includes the line from sagemaker.predictor import csv_serializer, which appears to only be valid with SageMaker SDK v1.x. Later, the lab includes the line container = sagemaker.image_uris.retrieve(region=boto3.Session().region_name, framework='xgboost', version='1.0-1'), which appears to only be valid with SageMaker SDK v2.x. As such, I can't get the lab to run all the way through with either SDK version.
from sagemaker.predictor import csv_serializer
container = sagemaker.image_uris.retrieve(region=boto3.Session().region_name, framework='xgboost', version='1.0-1')
Tested with SageMaker SDK v1.72.1 and v2.172.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The debugger lab includes the line
from sagemaker.predictor import csv_serializer
, which appears to only be valid with SageMaker SDK v1.x. Later, the lab includes the linecontainer = sagemaker.image_uris.retrieve(region=boto3.Session().region_name, framework='xgboost', version='1.0-1')
, which appears to only be valid with SageMaker SDK v2.x. As such, I can't get the lab to run all the way through with either SDK version.Tested with SageMaker SDK v1.72.1 and v2.172.0
The text was updated successfully, but these errors were encountered: