繁体   English   中英

使用带有训练脚本的拥抱面估计器和直接在 AWS sagemaker 中使用笔记本有什么区别?

[英]what is the difference between using a hugging face estimator with training script and directly using a notebook in AWS sagemaker?

在像Fine-tuning a pytorch bert model and deploying it with sagemakerfine-tune and host huggingface models on sagemaker 这样的教程中,一个拥抱脸估计器被用来调用训练脚本。 如果我直接在笔记本本身中运行脚本代码会有什么不同? 是因为估算器使部署 model 更容易吗?

您可以在笔记本本身中运行该脚本,但它不会使用 SageMaker 提供的功能进行部署。 您看到的估算器向 SageMaker 指定您正在使用的框架以及您传递的训练脚本。如果您在笔记本中运行脚本代码,这就像在您的本地环境中进行训练一样。 通过将脚本传递给 Estimator,您正在运行 SageMaker 训练作业。 估算器旨在封装 SageMaker 上的训练。

SageMaker 估算器概述: https://sagemaker.readthedocs.io/en/stable/overview.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM