基于aws文档(https://docs.aws.amazon.com/sagemaker/latest/dg/serverless-endpoints-create.html),
response = client.create_endpoint_config(
EndpointConfigName="<your-endpoint-configuration>",
ProductionVariants=[
{
"ModelName": "<your-model-name>",
"VariantName": "AllTraffic",
"ServerlessConfig": {
"MemorySizeInMB": 2048,
"MaxConcurrency": 20
}
}
]
)
我创建了一个无服务器端点(上面的示例代码(,但当调用端点时,我不断收到错误,有人遇到这个问题吗?错误-/.sagemaker/ts/models/model.mar已经存在。请指定--force/-f选项以覆盖模型存档输出文件"。仅供参考-当配置端点而不是无服务器时,这就起作用了。
您可以查看我们在这里创建的几个示例