mindspore-ci-bot
cb6e055736
!15936 fix codex
From: @yuzhenhua666
Reviewed-by: @c_34,@oacjiewen
Signed-off-by: @c_34
4 years ago
yuzhenhua
e7af421669
fix codex
4 years ago
yuzhenhua
4f92bdd505
modify for new path of dataset head file
4 years ago
mindspore-ci-bot
1e2e554db3
!15380 Unify minddata include files(except for datasets.h) in scenario of cloud and lite
From: @luoyang42
Reviewed-by: @tiancixiao
Signed-off-by:
4 years ago
mindspore-ci-bot
83cdb8bb38
!15560 Optimize cache_admin tool to allow multiple session destroy
From: @lixiachen
Reviewed-by: @robingrosman,@nsyca
Signed-off-by: @robingrosman
4 years ago
ms_yan
e830c209d6
use bash to run script
4 years ago
Lixia Chen
44fb7ac4bb
Add support for multi-session destroy
4 years ago
mindspore-ci-bot
10a3329248
!15295 Add cache demo for modelzoo resnet evaluation while training
From: @lixiachen
Reviewed-by: @mikef,@pandoublefeng
Signed-off-by: @pandoublefeng
4 years ago
Lixia Chen
357ae7833c
Add cache demo for modelzoo resnet
4 years ago
YangLuo
bf48400c10
unify include file of minddata
4 years ago
jiangzhenguang
d5c3e96fa5
fix resnet
4 years ago
chendongsheng
eefab34b16
fixed reset in ps mode train failed
4 years ago
mindspore-ci-bot
0fd6b0a7ce
!15376 fixed not support ps float16
From: @anancds
Reviewed-by: @limingqi107,@cristoval
Signed-off-by: @cristoval
4 years ago
panfei
140495e232
modify formula
4 years ago
chendongsheng
54a22e7e78
fixed not support ps float16
4 years ago
yuzhenhua
4848f5c81f
modify log format for 310 inferenct
4 years ago
mindspore-ci-bot
c5604bf655
!14989 update README at model_zoo
From: @dinglinhe123
Reviewed-by: @oacjiewen,@c_34
Signed-off-by: @c_34
4 years ago
dinglinhe
31ea6fc7f7
update README at model_zoo
4 years ago
jiangzhenguang
f6c78176b0
code clean
4 years ago
mindspore-ci-bot
99a5dacdc7
!14921 fix 310 inference codex
From: @yuzhenhua666
Reviewed-by: @oacjiewen,@c_34
Signed-off-by: @c_34
4 years ago
yuzhenhua
aeb3050284
for deeptext 310 inferenct
4 years ago
zhaoting
4ec452149b
clean static checking
4 years ago
jiangzhenguang
d0ab7afefe
add resnet18 310 infer in readme
4 years ago
zhaoting
c000d0c915
add ssd, resnet, unet evaluation while training process
4 years ago
mindspore-ci-bot
ffb6a16ecc
!14044 [NET] update resent train.py
From: @VectorSL
Reviewed-by: @limingqi107,@wilfchen,@cristoval
Signed-off-by:
4 years ago
unknown
b719324e33
deeplabv3 hwc & ssd off_optimize & resnet18
modified: model_zoo/official/cv/deeplabv3/eval.py
4 years ago
VectorSL
27f32783cd
update train,py for resent
4 years ago
mindspore-ci-bot
1b136e1713
!13875 change resnet101 allreduce split
From: @zhao_ting_v
Reviewed-by: @wuxuejian,@oacjiewen
Signed-off-by: @oacjiewen
4 years ago
mindspore-ci-bot
baed02fd5f
!13948 Fix error words for api comments.
From: @zhang_yi2020
Reviewed-by: @gemini524,@liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
zhangyi
980769d404
fix error words for api comments.
4 years ago
caojiewen
da60f433f1
removed the useless link of apply form
4 years ago
zhaoting
ac76deb3da
change resnet101 allreduce split
4 years ago
mindspore-ci-bot
f4a5eb5219
!13341 Add MomentumWithWeightDecayScale kernel-2
From: @VectorSL
Reviewed-by: @kingxian,@chujinjin
Signed-off-by: @kingxian
4 years ago
VectorSL
e67cf4437c
add momentum-decay-scale for gpu pynative
4 years ago
zhaoting
26457a8ee3
fix some bugs in resnet, ssd and naml
4 years ago
caifubi
866b53d5a8
modify pynative gpu benchmark script
4 years ago
jiangzhenguang
ef1b98bf18
fix 3d norm
4 years ago
mindspore-ci-bot
853354b07f
!12830 add_res18_310_infer
From: @jiangzg001
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @c_34
4 years ago
jiangzhenguang
81706e21ad
remove the reduce fusion config of resnet18.
4 years ago
jiangzhenguang
0366c66bbe
add res18 infer
4 years ago
chendongsheng
db0a6f1e19
replace ps-lite
4 years ago
mindspore-ci-bot
742c6bc7bd
!11601 add_resnet18
From: @jiangzg001
Reviewed-by: @c_34,@linqingke
Signed-off-by: @c_34
4 years ago
jiangzhenguang
9a07d38d55
add resnet18
4 years ago
chenhaozhe
97059addda
add filter-weight in ssd and resnet
4 years ago
xsmq
923b53d2e6
replace tab with spaces
4 years ago
mwang
b95f9fdb8e
using kaiming init in resnet
4 years ago
He Wei
7d9a783993
[auto-monad] Support side-effects by auto-monad
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.
The ControlDepend primitive is removed and there are two primitives added:
1. UpdateState:
```
a = Assign(para, value)
```
became:
```
a = Assign(para, value, u)
u = UpdateState(u, a)
```
2. Load:
```
x = Add(para, value)
```
became:
```
p = Load(para, u)
x = Add(p, value)
u = UpdateState(u, p)
```
4 years ago
mwang
8f8eee4b5e
bert thor supports lr configuration in config.py
4 years ago
mwang
0b312c2385
thor generalization code submit
4 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
4 years ago