是否有一种方法可以列出与AWS SageMaker笔记本电脑/工作室项目相关的所有资源/组件(型号,端点,培训JOB等)?

发布于 2025-01-28 17:29:13 字数 355 浏览 0 评论 0原文

如果我在AWS SageMaker笔记本上编写脚本来训练和部署机器学习模型,或使用AWS SageMaker Studio创建项目,当我尝试列出使用Boto3所使用的所有资源时,所提取的信息没有将资源信息链接到的模式,将其链接到笔记本/项目。

boto3.client('sagemaker').list_models()

。与我的帐户和地区。有没有办法将这些信息(模型,端点,培训jobs,processingjobs等)链接到它们创建的SageMaker笔记本/工作室项目?

If I write a script to train and deploy a machine learning model on AWS SageMaker notebook or create a Project using AWS SageMaker Studio, when I try to list all the resources used, using boto3, the information extracted has no pattern linking the resource information to the notebook/project.

boto3.client('sagemaker').list_models()

The boto3 api returns all resource information associated with my account and region. Is there a way to link these info (Models, endpoints, TrainingJobs, ProcessingJobs etc) to the Sagemaker Notebook/ Studio Project they were created in?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的夜不怕黑 2025-02-04 17:29:13

在SageMaker Studio中使用SageMaker Projects时,您获得的优点之一是该项目的所有儿童资源 - 型号,端点,管道用project> project -project -iD标记。您可以使用sagemaker的使用标签过滤器列出带有项目ID标记的SageMaker中的所有资源。

When using SageMaker Projects in SageMaker Studio, one of the advantages you get is all the child resources of that Project - models, endpoints, pipelines are tagged with the project-id. You can use SageMaker's search API with a tag filter to list all resources in SageMaker that are tagged with your project id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文