0

我正在尝试在 amazon sagemaker 中运行我自己的算法容器,在部署时,我收到如下错误。

predictor = tree.deploy(1, 'ml.m4.xlarge', serializer=csv_serializer)

ValueError: Error hosting endpoint decision-trees-sample-2018-03-01-09-59-06-832: Failed Reason:  The primary container for production variant AllTraffic did not pass the ping health check.

然后我这次运行同一行代码,我遇到了错误。

 predictor = tree.deploy(1, 'ml.m4.xlarge', serializer=csv_serializer)

ClientError: An error occurred (ValidationException) when calling the CreateEndpoint operation: Cannot create already existing endpoint "arn:aws:sagemaker:us-east-1:69759707XXxXX:endpoint/decision-trees-sample-2018-03-01-09-59-06-832".
4

1 回答 1

2

查看此问题:https ://github.com/awslabs/amazon-sagemaker-examples/issues/210

@djarpin 写道:

ping 运行状况检查消息是一个一般错误,可能由几个不同的问题引起。通常,名为 /aws/sagemaker/Endpoints/ 的 CloudWatch 日志组中的错误消息将提供更详细的说明,说明 ping 运行状况检查未通过的原因。

希望有帮助!

于 2018-04-05T15:15:30.650 回答