peixu_ren
33884e2ab7
Organize the formulars used in math.py
5 years ago
mindspore-ci-bot
725af9c1bb
!12311 adjust second allreduce split indices for thor optimizer
From: @sl_wang
Reviewed-by: @wang_zi_dong,@kisnwang
Signed-off-by: @kisnwang
5 years ago
wangshuide2020
008acc73cc
update the documentation of MatrixSetDiag, MatrixDiag, MatrixDiagPart, Unfold and Pad operators.
5 years ago
mwang
6e70ed105b
adjust second allreduce split indices
5 years ago
lihongkang
97b2d72624
fix bugs
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
mindspore-ci-bot
a063d7633d
!12241 [auto-monad] Support side-effects by auto-monad
From: @hwhewei
Reviewed-by: @zhunaipan,@zh_qh
Signed-off-by: @zh_qh
5 years ago
mindspore-ci-bot
61ab50915f
!11959 Add BCEWithLogitsLoss op for Ascend.
From: @liu_xiao_93
Reviewed-by:
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
liu_xiao_93
fabc25538e
Add BCEWithLogitsLoss
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
mindspore-ci-bot
4ec646c20f
!12025 fix the example of Unique, SparseApplyProximalAdagrad, BoundingBoxEncode, SGD and Parameter.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
mindspore-ci-bot
8fc5962418
!12055 compile graph for merging parameter slice only once
From: @yangzhenzhang
Reviewed-by: @stsuteng
Signed-off-by: @stsuteng
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
yangzhenzhang
726ea32778
merge parameter slice compile graph only once
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
84afbb510f
!11813 modify dice and diceloss
From: @lijiaqi0612
Reviewed-by: @kingxian,@zh_qh
Signed-off-by: @kingxian
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
mindspore-ci-bot
21670a5777
!11808 [examples] correct failed examples.
From: @david-he91
Reviewed-by: @ljl0711,@liangchenghui
Signed-off-by: @liangchenghui
5 years ago
Jiaqi
804ef79c18
modify dice and diceloss
5 years ago
hedongdong
cf69e39d31
[examples] correct failed examples
5 years ago
mindspore-ci-bot
a2f1a5b4b1
!11278 develop confusion matrix
From: @lijiaqi0612
Reviewed-by:
Signed-off-by:
5 years ago
Jiaqi
c821a2f3a2
confusion matrix
5 years ago
dinglongwei
12e6f32ae1
update timedistributed document
5 years ago
fangzehua
9fddc2e1e4
add pipe
5 years ago
mindspore-ci-bot
878614e6d8
!11575 update the example of ops.BoundingBoxDecode and add nn.TimeDistributed to the import list.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
mindspore-ci-bot
910772cea8
!11309 Add Hierarchical Occlusion Counterfactual
From: @ngtony
Reviewed-by:
Signed-off-by:
5 years ago
wangshuide2020
dd95497c5e
update the example of ops.BoundingBoxDecode and add nn.TimeDistributed to the import list
5 years ago
lihongkang
dedc4288bc
fix bugs
5 years ago
mindspore-ci-bot
27dc6e19a3
!11489 add validation of ApplyMomentum and update annotation of Broadcast, DistributedGradRecuer, GlobalBatchNorm, etc. Operators.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@ljl0711
Signed-off-by: @liangchenghui
5 years ago
unknown
d621b9d4ea
Add HOC modules and support uncertainty in runner
fix pylint issues
deepcopy model inside uncertatiny instance
update summary.proto for hoc and uncertainty
update summary.proto tab to spaces
enhance code by review comments
fix comment format
add uncertainty and saliency cross registration checking.
check registered with is none
group constants togather, enhance runner data checking
update copyright year
enhance comment wordings
5 years ago
mindspore-ci-bot
5c560c7d9b
!11463 Redo delete grad flag for fixing memory not enough
From: @joylvliang
Reviewed-by: @chujinjin,@zhoufeng54
Signed-off-by: @chujinjin
5 years ago
yangzhenzhang
cbca482e59
delete useless parameter in pipeline parallel
5 years ago
wangshuide2020
4cca77cb88
add validation of ApplyMomentum and update annotation of Broadcast, DistributedGradReducer, GlobalBatchNorm, etc. operators.
5 years ago
mindspore-ci-bot
69416d105f
!11368 fix error link in model zoo files for master
From: @lvmingfu
Reviewed-by: @gemini524
Signed-off-by:
5 years ago
lvliang
626cb9f0ab
recover-delete-grad-flag-for-fixing-memory-poor
5 years ago