caojiewen
da60f433f1
removed the useless link of apply form
4 years ago
caojiewen
cad462902a
fixed the code spell errors.
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
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
4 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
4 years ago
lilei
9a45c4419c
modify batch_normal
4 years ago
lilei
b858097ae4
modify MetaTensor and Tensor
4 years ago
mwang
1566022045
add READEME_cn.md for BERT_thor
4 years ago
Xiao Tianci
31fed1a2f6
change code to import APIs from mindspore.dataset rather than mindspore.dataset.engine
4 years ago
yanglf1121
918679daa3
add tensor.ndim and rename tensor.size() to tensor.size
4 years ago
mwang
56c8c346dd
remove unused optimizer inf config file
4 years ago
caozhou
b1189cd118
compatible name
4 years ago
wanyiming
dad47cf2dd
mod_comments
4 years ago
bai-yangfan
b4e020d081
dataset_attr_name
4 years ago
laiyongqiang
6b57cc705f
disable somas when variable_memory_max_size is set
4 years ago
chenzomi
44bf4c3e37
[ME] format code
4 years ago
chenzomi
5b769dfb20
[ME] Bug fix
4 years ago
chenzomi
d471d32e87
[ME] change `check_integer` to format `check_positive_int` and `check_integeter`
4 years ago
chenzomi
d4e8e94981
[ME] delete check_bool and replace with Validate.check_bool
4 years ago
mindspore-ci-bot
bd5a8b42ac
!6724 redundant codes clean
...
Merge pull request !6724 from TuDouNi/master
4 years ago
mindspore-ci-bot
a712489a28
!6643 Modifying the hardware information in Readme.
...
Merge pull request !6643 from linqingke/modelzoo
4 years ago
root
4e85071055
redundant codes clean
4 years ago
linqingke
3f7a5ed394
README A+X to A+K
4 years ago
wangmin
3120e51e7c
add bert_thor hub file
4 years ago
Ting Wang
ac627e046b
update links for README
...
Signed-off-by: Ting Wang <kathy.wangting@huawei.com>
4 years ago
wangmin
8d525fc051
adjust order of split allreduce
4 years ago
mindspore-ci-bot
31ad1654a1
!6267 delete redundant codes in model zoo
...
Merge pull request !6267 from zhaoting/clean_warnings
4 years ago
dayschan
59d9f8bf6a
remove importing _selected_ops from model_zoo
4 years ago
zhaoting
d421f49e60
delete redundant codes
4 years ago
mindspore-ci-bot
c95ed54fe1
!5239 reduce cyclomatic complexity in model zoo
...
Merge pull request !5239 from zhaoting/master
4 years ago
zhaoting
a4a65ffe06
reduce cyclomatic complexity
4 years ago
wangnan39@huawei.com
dc78af7365
fix bug in bert
4 years ago
mindspore-ci-bot
8b0793eb84
!6137 modify the model_zoo ckpt path
...
Merge pull request !6137 from TuDouNi/master
4 years ago
wangnan39@huawei.com
7578f23632
optim TrainOneStepCell
4 years ago
root
ec947ebf3d
modify the ckpt path
4 years ago
nhussain
92e99ff224
change map calls
4 years ago
wangnan39@huawei.com
fdac02feed
delete DataWrapper and optim Model
4 years ago
mindspore-ci-bot
cd07acc8a4
!5903 add set_grad() for pynative mode in model_zoo networks
...
Merge pull request !5903 from lvchangquan/master
4 years ago
lvchangquan
7abe692fb5
add set_grad() for pynative mode in model_zoo network
4 years ago
ZPaC
87bf2a7dcd
Add PS context.
4 years ago
mindspore-ci-bot
ad186e79d8
!5599 Collect input data when `dataset_sink_mode` set on GPU
...
Merge pull request !5599 from LiHongzhang/dataset_sink_mode
4 years ago
Li Hongzhang
066950f69e
GPU dataset_sink_mode collect inputs
4 years ago
yao_yf
d4cfe55c04
rename mirror_mean to gradients_mean
5 years ago
linqingke
4d9d8c3e74
Modelzoo interface change.
5 years ago
wangmin
d63b1f16bd
support startup bert_thor script with relative path
5 years ago
wangmin
d24ce34c36
fix bug of bert_thor
5 years ago
mindspore-ci-bot
e6a4d932b4
!5350 [AutoParallel]Rectification distributed init
...
Merge pull request !5350 from lichen/rectification_init
5 years ago
lichenever
d3e55b543e
rectification init
5 years ago
yao_yf
07117e4dd4
mv ParallelMode to context
5 years ago
panyifeng
1a54785fe2
remove name arg from gradoperation
5 years ago