mindspore-ci-bot
e3dc9a75cc
!12898 support parameter freeze
From: @zhangbuxue
Reviewed-by:
Signed-off-by:
5 years ago
buxue
2bda8c21e9
support grad freeze
5 years ago
panfei
140495e232
modify formula
5 years ago
mindspore-ci-bot
1713717f5e
!15358 Some API comments of mindspore should be fixed
From: @zhang_yi2020
Reviewed-by: @gemini524,@liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui,@wuxuejian
5 years ago
zhangyi
fa2eaafa51
fix some error format for api comments.
5 years ago
dayschan
771e3f61f3
Clean GraphKernel's codes from frontend
1. set class GraphKernel as deprecated, and treat it as Cell
2. set class InplaceAssign as deprecated, suggested using Assign instead.
3. set op_selector as deprecated, removed the _selected_ops and _selected_grad_ops, replaced with real operations
4. removed the two passes of GraphKernel from frontend
5. removed the GraphKernel's codes from other modules
5 years ago
mindspore-ci-bot
c43deb5469
!14809 [Less BN]New add FN, GC optimizer.
From: @linqingke
Reviewed-by: @guoqi1024,@xu-yfei
Signed-off-by: @xu-yfei
5 years ago
linqingke
c54ba4df9b
[Less BN]New add FN, GC optimizer.
add gc.
remove gc in less_bn
[Less BN]Add GC optimizer.
update format.
fix bug.
5 years ago
wangnan39@huawei.com
adf24f9ba0
delete extra whitespace in comments of lazyadam
5 years ago
wangnan39@huawei.com
7ad4fa160c
add annotations for some api
5 years ago
gerayking
1497ad1112
Add optimizer formula to comments - Adagrad
5 years ago
zhangyi
980769d404
fix error words for api comments.
5 years ago
zhangyi
d9b152f2ef
fix error format of api comments.
5 years ago
Ziyan
ca791c942a
insert depend for opt weight grouping
5 years ago
mindspore-ci-bot
5a716d03e1
!13386 modify api
From: @lijiaqi0612
Reviewed-by: @kisnwang,@kingxian
Signed-off-by: @kingxian
5 years ago
mindspore-ci-bot
6fcc934359
!13381 fix execution order of broadcast weight grouping
From: @gong_zi_yan
Reviewed-by: @kisnwang,@stsuteng
Signed-off-by: @stsuteng
5 years ago
Jiaqi
08ff9f95a8
maeloss api
5 years ago
Ziyan
a7ff90e011
fix execution order of broadcast weight grouping
5 years ago
mindspore-ci-bot
5c39c33c92
!13260 fix SequentialCell and CellList parameter name bug
From: @caozhou_huawei
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
0d93f4475f
!13192 add check and fix bug
From: @lijiaqi0612
Reviewed-by:
Signed-off-by:
5 years ago
caozhou
d443e00593
fix SequentialCell and CellList parameter name bug
5 years ago
Jiaqi
cbd717ea23
add check and fix bug
5 years ago
wangshuide2020
28bf0b4fe2
add raises description for Adam, Lamb, Momentum, etc. operators.
5 years ago
Jiaqi
a82ecaa0ed
modify api and add check
5 years ago
Jiaqi
af3a7a30f8
add grad centralization
5 years ago
zhangyi
7b05971b49
fix error format of api comments.
5 years ago
wangshuide2020
b9eb90b198
add GPU for DenseBnAct, Erfc, Log1p, etc. in Supported Platforms.
5 years ago
mwang
6e70ed105b
adjust second allreduce split indices
5 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)
```
5 years ago
mwang
0b312c2385
thor generalization code submit
5 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
5 years ago
lizhenyu
f17534af08
ps cache support sparse
5 years ago
wangshuide2020
4cca77cb88
add validation of ApplyMomentum and update annotation of Broadcast, DistributedGradReducer, GlobalBatchNorm, etc. operators.
5 years ago
mindspore-ci-bot
2ea8527de3
!11314 add cache embedding for wide&deep model
From: @fangzehua
Reviewed-by:
Signed-off-by:
5 years ago
fangzehua
f97e19f23f
add cache pass
5 years ago
wangshuide2020
2e078eefb4
update annotation of WarmUpLR, FTRL, LARS, etc. operators.
5 years ago
wangshuide2020
88b5e96d0c
update annotation of Norm, Range, Ftrl, etc. operators.
5 years ago
yanghaoran
58bae307d6
fix bugs
5 years ago
lihongkang
5bd1a198ad
fix bugs
5 years ago
zhangyi
5b5cfee0b1
fix some api comments.
5 years ago
shibeiji
b2d98d2751
add tbe fusion operators LambApplyOptimizerAssign and LambApplyWeightAssign for lamb optimizer
5 years ago
dayschan
a661c3dd40
fix warning for enable_graph_kernel context in CPU device
5 years ago
mindspore-ci-bot
aecd96cdb2
!10424 Compute weighted loss
From: @xuguoyang5566
Reviewed-by: @wuxuejian
Signed-off-by:
5 years ago
Ziyan
660f578988
fix standalone prediction
5 years ago
xuguoyang
7fe25d6444
Add weights loss compute
5 years ago
wangshuide2020
4b693377dc
update documentation of warmup_lr, F1, RMSProp, BatchNorm2d and add some pictures of links of activation function.
5 years ago
lihongkang
d499135f43
fix bugs
5 years ago
mindspore-ci-bot
00611b1c41
!10175 Add tensor.ndim and rename tensor.size() to tensor.size
From: @yanglf1121
Reviewed-by: @kingxian,@zhunaipan
Signed-off-by: @kingxian
5 years ago
Ziyan
c5c905fdf5
add restriction for opt shard
5 years ago
yanglf1121
918679daa3
add tensor.ndim and rename tensor.size() to tensor.size
5 years ago