peixu_ren
33884e2ab7
Organize the formulars used in math.py
5 years ago
wangshuide2020
008acc73cc
update the documentation of MatrixSetDiag, MatrixDiag, MatrixDiagPart, Unfold and Pad operators.
5 years ago
mindspore-ci-bot
20905d452f
!12233 remove the return of func 'append()' of SequentialCell
From: @yepei6
Reviewed-by: @kisnwang
Signed-off-by:
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
yepei6
e792fca5af
remove return self of enpand in class CellList
5 years ago
wangshuide2020
6030cc83bd
fix the example of MultiFieldEmbeddingLookup operator.
5 years ago
wangshuide2020
8da6d65222
fix the validation of Softmax, Tanh, Elu operators.
5 years ago
mindspore-ci-bot
74652eb942
!12044 modify pack to stack
From: @jinyaohui
Reviewed-by:
Signed-off-by:
5 years ago
jinyaohui
8022f9a6ed
modify pack to stack
5 years ago
wangshuide2020
2e5b22adde
fix the example of Unique, SparseApplyProximalAdagrad, BoundingBoxEncode, SGD and Parameter.
5 years ago
mindspore-ci-bot
5e29ea8184
!12031 Add shape check to Dense
From: @wanyiming
Reviewed-by: @zh_qh,@kingxian
Signed-off-by: @kingxian
5 years ago
wanyiming
e5eb05adc4
checkdense
5 years ago
mindspore-ci-bot
1f3b059195
!12004 thor generalization code submit
From: @sl_wang
Reviewed-by: @guoqi1024
Signed-off-by:
5 years ago
mwang
0b312c2385
thor generalization code submit
5 years ago
wangshuide2020
30f99f2722
add raises description for BCELoss, ReLU, BatchNorm1d, etc. operators.
5 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
5 years ago
mindspore-ci-bot
ce89cc5e8b
!11761 Change GatherV2 to Gather (merge from r1.1 to master)
From: @liangzhibo
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
35d0634291
!11845 check wrapper layer timedistributed input type
From: @dinglongwei
Reviewed-by: @c_34,@liangchenghui
Signed-off-by: @c_34
5 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
5 years ago
mindspore-ci-bot
d6e32cd71c
!11735 PS embedding cache support sparse
From: @zyli2020
Reviewed-by:
Signed-off-by:
5 years ago
lizhenyu
f17534af08
ps cache support sparse
5 years ago
dinglongwei
465eee4865
add timedistributed input type check
5 years ago
hedongdong
cf69e39d31
[examples] correct failed examples
5 years ago
dinglongwei
12e6f32ae1
update timedistributed document
5 years ago
fangzehua
9fddc2e1e4
add pipe
5 years ago
lihongkang
dedc4288bc
fix bugs
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
mindspore-ci-bot
c2d7eb0f21
!11389 fix_moments_and_clipbyvalue_issue
From: @jiangzg001
Reviewed-by: @liangchenghui,@c_34
Signed-off-by: @liangchenghui,@c_34
5 years ago
mindspore-ci-bot
4e3abb2434
!11381 Mod Dense to support ND*2D by using reshape
From: @wanyiming
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
5 years ago
mindspore-ci-bot
9a7e0c0c95
!11308 modify normal_batch bug
From: @Somnus2020
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
5 years ago
mindspore-ci-bot
60feffad20
!11332 update Pooling's attr kernel_size, pad_mode
From: @yuchaojie
Reviewed-by:
Signed-off-by:
5 years ago
jiangzhenguang
c3ab66afd9
fix_moments_clipbyvalue
5 years ago
wangshuide2020
2e078eefb4
update annotation of WarmUpLR, FTRL, LARS, etc. operators.
5 years ago
wanyiming
61793da1d9
reshape_dense
5 years ago
yuchaojie
b51b3a6764
update Pool's attr kernel_size, pad_mode
5 years ago
mindspore-ci-bot
e82c53b5ae
!11343 fix bugs of op BatchNorm1d, FastGelu in API
From: @lihongkang1
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
lihongkang
ae325f2e53
fix bugs
5 years ago
lilei
8037ef77f5
modify batch_normal
5 years ago
wangshuide2020
88b5e96d0c
update annotation of Norm, Range, Ftrl, etc. operators.
5 years ago
mindspore-ci-bot
bbdb5500e5
!11281 fix bugs of op NPUClearFloatStatus, ApplyFtrl, SGD and so on
From: @lihongkang1
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
yanghaoran
58bae307d6
fix bugs
5 years ago
mindspore-ci-bot
59551879a0
!11021 Add new nn layer InstanceNorm2d
From: @yuan_shen_zhou
Reviewed-by:
Signed-off-by:
5 years ago
zhouyuanshen
26f6daa850
add new op instancenorm2d
5 years ago
mindspore-ci-bot
151c0e2977
!11132 modify batchnormal and fusedbatchnormal
From: @Somnus2020
Reviewed-by:
Signed-off-by:
5 years ago
mindspore-ci-bot
f43f178f49
!11214 Fix a doc issue in math.py
From: @peixu_ren
Reviewed-by: @sunnybeike
Signed-off-by: @sunnybeike
5 years ago
lilei
9a45c4419c
modify batch_normal
5 years ago
liuxiao93
7c419f2f5d
Modify nn.Range for GPU.
5 years ago
peixu_ren
42273bc13f
Fix a doc issue in math.py
5 years ago