Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
41e6ceaa
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
41e6ceaa
编写于
9月 08, 2020
作者:
C
CaoJian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vgg16 support imagenet dataset on Ascend
上级
75045e3e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
5 deletion
+21
-5
model_zoo/official/cv/vgg16/scripts/run_distribute_train.sh
model_zoo/official/cv/vgg16/scripts/run_distribute_train.sh
+18
-5
model_zoo/official/cv/vgg16/src/vgg.py
model_zoo/official/cv/vgg16/src/vgg.py
+3
-0
未找到文件。
model_zoo/official/cv/vgg16/scripts/run_distribute_train.sh
浏览文件 @
41e6ceaa
...
...
@@ -14,9 +14,9 @@
# limitations under the License.
# ============================================================================
if
[
$#
!=
2
]
if
[
$#
!=
2
]
&&
[
$#
!=
3
]
then
echo
"Usage: sh run_distribute_train.sh [RANK_TABLE_FILE] [DATA_PATH]"
echo
"Usage: sh run_distribute_train.sh [RANK_TABLE_FILE] [DATA_PATH]
[cifar10|imagenet2012]
"
exit
1
fi
...
...
@@ -32,6 +32,19 @@ then
exit
1
fi
dataset_type
=
'cifar10'
if
[
$#
==
3
]
then
if
[
$3
!=
"cifar10"
]
&&
[
$3
!=
"imagenet2012"
]
then
echo
"error: the selected dataset is neither cifar10 nor imagenet2012"
exit
1
fi
dataset_type
=
$3
fi
export
DEVICE_NUM
=
8
export
RANK_SIZE
=
8
export
RANK_TABLE_FILE
=
$1
...
...
@@ -45,8 +58,8 @@ do
cp
*
.py ./train_parallel
$i
cp
-r
src ./train_parallel
$i
cd
./train_parallel
$i
||
exit
echo
"start training for rank
$RANK_ID
, device
$DEVICE_ID
"
echo
"start training for rank
$RANK_ID
, device
$DEVICE_ID
,
$dataset_type
"
env
>
env.log
python train.py
--data_path
=
$2
--device_target
=
"Ascend"
--device_id
=
$i
--is_distributed
=
1 &> log &
python train.py
--data_path
=
$2
--device_target
=
"Ascend"
--device_id
=
$i
--is_distributed
=
1
--dataset
=
$dataset_type
&> log &
cd
..
done
\ No newline at end of file
done
model_zoo/official/cv/vgg16/src/vgg.py
浏览文件 @
41e6ceaa
...
...
@@ -139,5 +139,8 @@ def vgg16(num_classes=1000, args=None, phase="train"):
>>> vgg16(num_classes=1000, args=args)
"""
if
args
is
None
:
from
.config
import
cifar_cfg
args
=
cifar_cfg
net
=
Vgg
(
cfg
[
'16'
],
num_classes
=
num_classes
,
args
=
args
,
batch_norm
=
args
.
batch_norm
,
phase
=
phase
)
return
net
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录