在sagemaker中查看目录和文件夹

时间:2018-10-22 06:39:13

标签: amazon-sagemaker

我创建了一个目录和文件夹,用于将模型和检查点保留在亚马逊Sagemaker中。如何访问此目录和文件夹以查看模型和检查点?

2 个答案:

答案 0 :(得分:0)

如果您正在AWS而不是在本地运行培训/服务端点,则所有文件在Amazon S3下可见。可能在设置Sagemaker配置时,还必须创建一个S3存储桶。

另一个选择是,培训在本地进行。在这种情况下,文件位于您计算机中的某个位置。

培训结束后,Sagemaker将生成的模型从Docker映像复制到S3或本地计算机。

答案 1 :(得分:0)

在培训中,/opt/ml/model的内容被上载到创建培训作业时通过的OutputDataConfig中指定的S3位置。

在托管和批处理转换中,未归档ModelDataUrl指定的S3位置,并且可用于/opt/ml/model处的推理容器。

另请参阅文档:

https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo.html#your-algorithms-training-algo-envvariables

https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-code-load-artifacts

https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-batch-code.html#your-algorithms-batch-code-load-artifacts