mindspore-ci-bot
4ecbaffeb7
!12401 Add GPU guidance in FasterRCNN README file
...
From: @dessyang
Reviewed-by: @robingrosman,@c_34
Signed-off-by: @c_34
2021-02-19 10:44:03 +08:00
mindspore-ci-bot
adfe6e1bc2
!12184 Fix some spelling mistakes in model_zoo training script
...
From: @zlq2020
Reviewed-by: @guoqi1024
Signed-off-by: @guoqi1024
2021-02-19 09:45:11 +08:00
mindspore-ci-bot
0042f3e894
!12397 fixed the bad links in the retinanet readme file
...
From: @oacjiewen
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @liangchenghui
2021-02-19 09:22:49 +08:00
dessyang
71a7102573
modify README by adding GPU usage
2021-02-18 17:23:50 -05:00
mindspore-ci-bot
31598d522e
!12312 Add requirements and docker file in ssd, update the config of num_ssd_boxes
...
From: @c_34
Reviewed-by: @oacjiewen,@liangchenghui
Signed-off-by: @liangchenghui
2021-02-18 22:23:09 +08:00
caojiewen
73a3871823
fixed the bad links
2021-02-18 22:09:45 +08:00
zlq2020
3e75eb5180
fix spelling bug
2021-02-10 11:00:47 +08:00
gengdongjie
dc48458a8d
cast weight from float16 to float32 for warpctc
2021-02-09 20:55:50 +08:00
chenhaozhe
8bf417078c
Add requirements and update config of num_ssd_boxes
2021-02-09 16:37:14 +08:00
mindspore-ci-bot
bab7b70e76
!12302 LSTM Ascend parameter change from fp16 to fp32
...
From: @ttudu
Reviewed-by: @c_34,@wuxuejian
Signed-off-by: @c_34
2021-02-09 15:38:17 +08:00
mindspore-ci-bot
b7b553ae48
!12240 [Lite] The README is not updated with the code
...
From: @sishuikang
Reviewed-by: @zhanghaibo5,@ivss
Signed-off-by: @zhanghaibo5
2021-02-09 14:15:45 +08:00
ttudu
f4193137e5
LSTM Ascend parameter type fp16 change to fp32
2021-02-09 12:26:12 +08:00
mindspore-ci-bot
a36485fdb4
!12018 MindSpore社区网络模型征集活动——DenseNet-121
...
From: @fireinthehole1024
Reviewed-by:
Signed-off-by:
2021-02-09 11:08:12 +08:00
mindspore-ci-bot
e489b67a3a
!12226 fix cnn & efficientnet bugs
...
From: @pandoublefeng
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @c_34
2021-02-08 19:32:34 +08:00
mindspore-ci-bot
e8060bd9e8
!12284 bug fix: the resnet initial time increase after use kaiming initial
...
From: @sl_wang
Reviewed-by: @wang_zi_dong,@kisnwang
Signed-off-by: @kisnwang
2021-02-08 19:27:38 +08:00
mindspore-ci-bot
6ae7a3ad13
!12247 Add shell scripts to Wavenet
...
From: @wanyiming
Reviewed-by:
Signed-off-by:
2021-02-08 17:09:41 +08:00
mindspore-ci-bot
9bff6f8cfd
!12200 Add shell scripts to DeepSpeech
...
From: @wanyiming
Reviewed-by: @wuxuejian,@liangchenghui
Signed-off-by: @wuxuejian
2021-02-08 17:08:54 +08:00
mindspore-ci-bot
ea3f8d6aba
!12167 fix issue I2BDOU fasterrcnn accuracy decreased
...
From: @zhouneng2
Reviewed-by:
Signed-off-by:
2021-02-08 17:05:36 +08:00
mwang
b95f9fdb8e
using kaiming init in resnet
2021-02-08 16:47:38 +08:00
wanyiming
2be036b4e5
add_shell
2021-02-08 11:14:10 +08:00
wanyiming
77c2559387
add_wavenet_shell
2021-02-08 11:07:00 +08:00
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)
```
2021-02-08 09:01:15 +08:00
mindspore-ci-bot
f0a9cb7c20
!12121 Add CTPN network
...
From: @qujianwei
Reviewed-by:
Signed-off-by:
2021-02-07 22:56:54 +08:00
hukang hwx963878
a97b0e5830
fix mindspore version to 1.1.0
2021-02-07 19:25:17 +08:00
mindspore-ci-bot
fcd0eb0c5d
!12208 fix typos in README for maskrcnn and fastercnn
...
From: @gengdongjie
Reviewed-by: @liangchenghui,@oacjiewen
Signed-off-by: @oacjiewen
2021-02-07 17:44:10 +08:00
mindspore-ci-bot
56973dfb91
!11429 retinanet PR
...
From: @yufan1012
Reviewed-by:
Signed-off-by:
2021-02-07 17:40:20 +08:00
panfengfeng
d72feda64b
fix cnn efficientnet bugs
2021-02-07 17:37:35 +08:00
zhouneng
3cb75eb59d
fix fasterrcnn accuracy decrease by change the dtype of weights from float16 to float32
2021-02-07 16:02:30 +08:00
gengdongjie
4282a43732
fix typos in maskrcnn and fastercnn
2021-02-07 14:38:02 +08:00
qujianwei
ae27c383fa
init for ctpn
...
add for connect table
fix some bug
fix pylint
fix for create dataset
fix dataset bug
fix for create dataset problem
add for svt icdar2015 convert script
fix for ctpn problem
fix for vgg16
2021-02-07 11:27:38 +08:00
mindspore-ci-bot
219774d904
!12172 [MS][Lite]Image segmentation update 1.0.1 to 1.1.0 aar
...
From: @sishuikang
Reviewed-by: @zhanghaibo5,@zhang_xue_tong
Signed-off-by: @zhanghaibo5
2021-02-07 10:45:39 +08:00
mindspore-ci-bot
a3d9720620
!12059 fix fastercnn convert checkpoint script
...
From: @qujianwei
Reviewed-by: @c_34,@linqingke
Signed-off-by: @linqingke
2021-02-07 10:06:27 +08:00
hukang hwx963878
027bfa9c44
替换1.1.0的mindspore aar包
2021-02-05 14:55:27 +08:00
wuxuejian
3d185352e0
fix mobilenetv3 gpu train param
2021-02-05 10:44:10 +08:00
mindspore-ci-bot
b6c72a27f7
!12139 fix mobilenetv3 cpu train param
...
From: @wuxuejian
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @liangchenghui
2021-02-05 10:07:26 +08:00
mindspore-ci-bot
4cf59f39c9
!12126 [MS][LITE] fix file path name
...
From: @sishuikang
Reviewed-by: @zhanghaibo5,@zhang_xue_tong
Signed-off-by: @zhanghaibo5
2021-02-05 09:19:46 +08:00
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
...
From: @jinyaohui
Reviewed-by:
Signed-off-by:
2021-02-04 21:02:09 +08:00
mindspore-ci-bot
8cbbfdcbda
!11962 Add rpn proposals
...
From: @zhouyaqiang0
Reviewed-by: @wuxuejian,@oacjiewen,@wuxuejian
Signed-off-by: @wuxuejian
2021-02-04 21:02:04 +08:00
fireinthehole1024
8c497edbbd
densenet121 gpu support
2021-02-04 21:00:59 +08:00
wuxuejian
b3867c51d9
fix mobilenetv3 cpu train param
2021-02-04 20:25:58 +08:00
mindspore-ci-bot
8ee48b6e17
!12072 modified the code specifications
...
From: @shuzigood
Reviewed-by: @wuxuejian,@linqingke
Signed-off-by: @wuxuejian
2021-02-04 20:25:40 +08:00
mindspore-ci-bot
3bf5681ebc
!12093 adapt api for optimizer import
...
From: @sl_wang
Reviewed-by: @wang_zi_dong
Signed-off-by:
2021-02-04 19:46:27 +08:00
jinyaohui
8022f9a6ed
modify pack to stack
2021-02-04 18:54:31 +08:00
hukang hwx963878
c7fe5e0fe0
更换文件名
...
更换文件名
2021-02-04 17:10:48 +08:00
mwang
8f8eee4b5e
bert thor supports lr configuration in config.py
2021-02-04 15:30:11 +08:00
mindspore-ci-bot
e36d08aacc
!12096 fix link error in README of GPT
...
From: @alouhahahahaha
Reviewed-by: @kisnwang
Signed-off-by:
2021-02-04 14:51:06 +08:00
alouhahaha
b2fc857fe0
fix link error in README
2021-02-04 14:29:00 +08:00
mindspore-ci-bot
51e7b6481a
!12034 modify instructions of preprocessing msra dataset
...
From: @shibeiji
Reviewed-by: @c_34,@guoqi1024
Signed-off-by: @c_34
2021-02-04 14:20:52 +08:00
mindspore-ci-bot
07e9c79de8
!12028 Add MobileNetV3 CPU scripts
...
From: @wuxuejian
Reviewed-by: @c_34,@liangchenghui,@oacjiewen,@liangchenghui
Signed-off-by: @liangchenghui
2021-02-04 11:30:01 +08:00
mindspore-ci-bot
c144896aee
!11949 add inceptionv3 cpu train script
...
From: @caojian05
Reviewed-by: @wuxuejian,@oacjiewen
Signed-off-by: @wuxuejian
2021-02-04 11:20:50 +08:00