From 4a2c215e1e40c43b2a5e8b04222191dda9dbe8c6 Mon Sep 17 00:00:00 2001 From: "wangnan39@huawei.com" Date: Fri, 10 Apr 2020 09:40:26 +0800 Subject: [PATCH] fix copy_parallel bug in --- tutorials/source_zh_cn/advanced_use/use_on_the_cloud.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/source_zh_cn/advanced_use/use_on_the_cloud.md b/tutorials/source_zh_cn/advanced_use/use_on_the_cloud.md index 38decd50..2075ef8a 100644 --- a/tutorials/source_zh_cn/advanced_use/use_on_the_cloud.md +++ b/tutorials/source_zh_cn/advanced_use/use_on_the_cloud.md @@ -117,14 +117,14 @@ MindSpore暂时没有提供直接访问OBS数据的接口,需要通过MoXing ```python import moxing as mox - mox.file.copy_parallel(src_path='s3://dataset_url/', dst_path='/cache/data_path') + mox.file.copy_parallel(src_url='s3://dataset_url/', dst_url='/cache/data_path') ``` 2. 将训练输出从容器中上传至OBS。 ```python import moxing as mox - mox.file.copy_parallel(src_path='/cache/output_path', dst_path='s3://output_url/') + mox.file.copy_parallel(src_url='/cache/output_path', dst_url='s3://output_url/') ``` ### 获取环境变量 -- GitLab