dinglinhe
54fb72e2b3
Update normalization description at nn/layer/normalization.py
4 years ago
zhaoting
ffaf33d5d6
clean pylint & shell check
4 years ago
tronzhang
8ff3c16778
add swtich for parallel fusion and default is off
4 years ago
dinglinhe
31ea6fc7f7
update README at model_zoo
4 years ago
mindspore-ci-bot
3b076985f4
!14905 fix doc problem
From: @zhaojichen
Reviewed-by: @c_34,@oacjiewen
Signed-off-by: @c_34
4 years ago
mindspore-ci-bot
cd002cb7f7
!14893 enable stitch fusion on bert
From: @r1chardf1d0
Reviewed-by: @gaoxiong1,@ckey_dou
Signed-off-by: @ckey_dou
4 years ago
zhaojichen
0ee8ccddd6
fix code issue
4 years ago
mindspore-ci-bot
a83e31412d
!14920 clean redundant code
From: @zhao_ting_v
Reviewed-by: @oacjiewen,@wuxuejian
Signed-off-by: @wuxuejian
4 years ago
zhaoting
5aad67cb33
clean redundant code
4 years ago
zhaoting
4ec452149b
clean static checking
4 years ago
r1chardf1d0
3b32995936
enable stitch fusion on bert
4 years ago
w00449189
6c412a94e3
fix pylint warning
4 years ago
zhaoting
17f5f4be92
add requirements for unet
4 years ago
mindspore-ci-bot
eec1b4441d
!14348 modify the import order
From: @alouhahahahaha
Reviewed-by: @zhoufeng54,@jjfeing
Signed-off-by: @jjfeing
4 years ago
alouhahaha
a5a88a5337
modify import order
4 years ago
mindspore-ci-bot
783dfe016f
!13903 Support CPU tinybert and ner task
From: @zhao_ting_v
Reviewed-by: @wuxuejian,@c_34
Signed-off-by: @wuxuejian
4 years ago
mindspore-ci-bot
669a37739e
!14080 modify some readme file
From: @zhanghuiyao
Reviewed-by: @c_34,@oacjiewen
Signed-off-by: @c_34
4 years ago
zhaoting
c14c707475
Support CPU tinybert and ner task
4 years ago
mindspore-ci-bot
1aa16fb431
!13999 modify BERT、TinyBERT README and modify TinyBERT network script
From: @wang_hua_2019
Reviewed-by: @c_34
Signed-off-by:
4 years ago
mindspore-ci-bot
d03eef497b
!13830 deeplabv3 & ssd & lstm new interface
From: @zhangxiaoxiao16
Reviewed-by: @c_34,@wuxuejian
Signed-off-by: @c_34
4 years ago
zhanghuiyao
45ac019e51
modify some readme file.
4 years ago
wang_hua_2019
e0d85aecea
modify tinybert for MindSpore BERT
4 years ago
caojiewen
da60f433f1
removed the useless link of apply form
4 years ago
unknown
e063925b9c
deeplabv3 & ssd & lstm new interface
modified: model_zoo/official/cv/ssd/README_CN.md
4 years ago
caojiewen
cad462902a
fixed the code spell errors.
4 years ago
mindspore-ci-bot
669a32355c
!13769 remove control_depend from py file
From: @huangbingjian
Reviewed-by: @hwhewei,@zh_qh
Signed-off-by: @zh_qh
4 years ago
oacjiewen
eaa7ec5cd2
1. fixed for markdownlint errors.
2. fixed spell errors.
4 years ago
huangbingjian
72ae1799f3
remove control_depend from py file
4 years ago
mindspore-ci-bot
f0016f5574
!13630 fix transformer scripts error in master
From: @pandoublefeng
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @liangchenghui
4 years ago
VectorSL
c1a619ccfe
add AdamWeightDecayOp
4 years ago
panfengfeng
25d18bc889
fix transformer gpu
4 years ago
mindspore-ci-bot
5d410342e9
!13566 fix transformer readme
From: @yuchaojie
Reviewed-by: @oacjiewen,@c_34
Signed-off-by: @c_34
4 years ago
yuchaojie
483ab836c9
fix transformer readme
4 years ago
chenhaozhe
15d37e5db9
imporve convergence of loss in bert
4 years ago
mindspore-ci-bot
fa1fbc088c
!13163 modify api detect_overflow name in TrainOneStepWithLossScaleCell
From: @wangnan39
Reviewed-by: @kingxian,@hwhewei
Signed-off-by: @kingxian
4 years ago
wangnan39@huawei.com
7188a14215
modify api detect_overflow name in TrainOneStepWithLossScaleCell
4 years ago
mindspore-ci-bot
4d82df0b09
!12652 modify tinybert readme
From: @wang_hua_2019
Reviewed-by: @c_34,@linqingke
Signed-off-by: @c_34
4 years ago
wang_hua_2019
8133238f2f
modify tinybert readme
4 years ago
Ziyan
ec9793861f
fix grad accu
4 years ago
mindspore-ci-bot
95adf66d30
!12512 optimize class TrainOneStepWithLossScaleCell
From: @wangnan39
Reviewed-by:
Signed-off-by:
4 years ago
wangnan39@huawei.com
4d69e21933
optimizer class TrainOneStepWithLossScaleCell
4 years ago
xsmq
923b53d2e6
replace tab with spaces
4 years ago
ttudu
f4193137e5
LSTM Ascend parameter type fp16 change to fp32
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
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
From: @jinyaohui
Reviewed-by:
Signed-off-by:
4 years ago
mindspore-ci-bot
3bf5681ebc
!12093 adapt api for optimizer import
From: @sl_wang
Reviewed-by: @wang_zi_dong
Signed-off-by:
4 years ago
jinyaohui
8022f9a6ed
modify pack to stack
4 years ago
mwang
8f8eee4b5e
bert thor supports lr configuration in config.py
4 years ago
mindspore-ci-bot
e36d08aacc
!12096 fix link error in README of GPT
From: @alouhahahahaha
Reviewed-by: @kisnwang
Signed-off-by:
4 years ago
alouhahaha
b2fc857fe0
fix link error in README
4 years ago