我们如何使用 AWS CloudFormation 创建 SageMaker 管道?
我尝试在 CloudFormation 中使用 AWS::SageMaker::Pipeline
资源。
我想在 CloudFormation 中给出 JSON 格式的管道定义。但没有任何可用的文档。仅存在 Python SDK 管道定义的文档。
如何使用 CloudFormation 创建 MLOps SageMaker 管道?
I have tried using the AWS::SageMaker::Pipeline
resource in CloudFormation.
I want to give a pipeline definition in JSON format in CloudFormation. But there aren't any documentation available for that. There is documentation only for a Python SDK pipeline definition.
How can I create an MLOps SageMaker pipeline using CloudFormation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此过程记录在此处。
您可以使用 SageMaker Python SDK 构建管道定义,也可以直接编写 JSON 定义。 SDK 使定义管道和获取 JSON 定义变得更加容易。
获得 JSON 格式的定义后,您可以在 CloudFormation 中定义管道,如上面链接中所述。
This process is documented here.
You can either construct the pipeline definition using the SageMaker Python SDK or by writing the JSON definition directly. The SDK makes it easier to define a pipeline and get the JSON definition.
Once you have the definition in JSON, you can define the pipeline in CloudFormation as it is documented in the link above.