Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在不同的数据段上创建了单独的预测模型(使用 SageMaker 的内置算法)。在生产中,这些模型需要根据输入数据的片段来调用。
是否可以在 SageMaker 中托管复合模型?如何定义部署复合模型的配置?
目前 SageMaker 在单个端点后面托管单个模型。如果您想要复合终端节点,您可以使用 AWS Lambda 函数来实现,该函数获取输入功能、调用多个终端节点并组合结果,然后再响应原始请求。