i-robot
aeb2cccbe6
!27152 [bug]fix functional grad with grad_position twice bug
Merge pull request !27152 from chenzhuo/grad
4 years ago
chenzhuo
287bcdd783
fix grad twice position bug
4 years ago
tacyi139
0bb05b0e82
optimize code docs
4 years ago
i-robot
23da0717bc
!26187 Support CSRTensor
Merge pull request !26187 from 杨林枫/csr_frontend
4 years ago
yanglf1121
72db8e4d3f
support sparse tensor frontend
4 years ago
chenzhuo
d07f24462c
add examples of grad, jvp and vjp
4 years ago
i-robot
0f07408425
!26034 F.grad support sens_param and fix graph_mode bug
Merge pull request !26034 from zhang_sss/grad
4 years ago
i-robot
e773f0621e
!25918 add Function jvp and vjp
Merge pull request !25918 from chenzhuo/jvp
4 years ago
chenzhuo
f36edec3ff
add function jvp
4 years ago
zhang__sss
0dd68aa7eb
grad
4 years ago
zhang__sss
8bae4d9d50
grad
4 years ago
lianliguang
72c7706d22
support dynamic slice in runtime mode
4 years ago
huchunmei
26f8e55f74
Canonical code
4 years ago
fangzehua
4ccc635a07
add print security
4 years ago
l00591931
4f4a344149
Vjp and fix jvp
4 years ago
l00591931
c07c286fcd
Add forward mode auto diff
4 years ago
djc
b077aa1cab
[feat] [assistant] [I3T96T] add new Dataset operator CMUARCTICDataset
4 years ago
djc
4e6f7dc97d
[feat] [assistant] [I3T96X] add new Dataset operator LibriSpeechDataset
4 years ago
huangmengxi
5c9bc28798
add sponge frontend
4 years ago
Zhang Qinghua
8be269c1cc
Fix GradOperation issues:
- Allow the J CNode used multiple as non-call input.
- Check recursive J FG including FV J CNode.
- Add grad functional api.
4 years ago
mindspore-ci-bot
417bd45e0f
!17406 fix the format and other warning problems.
From: @wangshuide2020
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
wangshuide2020
348cbf528c
fix the format and other warning problems.
4 years ago
yanglf1121
d3d38d2caa
improve tensor setitem
4 years ago
mindspore-ci-bot
b75c694032
!16668 add gpu op cumprod and tensor_scatter_add
From: @yanglf1121
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
4 years ago
huangmengxi
bfde2029ee
fix
add isnan cpu
fix multi_dot
4 years ago
yanglf1121
3729bd5374
add gpu op cumprod, tensor_scatter_add
4 years ago
yepei6
acbd7eb023
add more tensor methods
5 years ago
yepei6
81789ffb5d
augassign
5 years ago
yanglf1121
560ef0036f
Add new np interfaces
5 years ago
huangbingjian
72ae1799f3
remove control_depend from py file
5 years ago
yanglf1121
72b365c24b
Add new np interfaces
5 years ago
l00591931
bbdb050fc7
Change switch to Switch
5 years ago
l00591931
680324f225
Change make tuple in core.ops
5 years ago
buxue
f8a00d52af
support invert bool tensor
5 years ago
mindspore-ci-bot
9893b3d128
!12320 add focal loss
From: @lijiaqi0612
Reviewed-by:
Signed-off-by:
5 years ago
Jiaqi
fd1a4726b7
add focal loss
5 years ago
l00591931
88de02bd0c
Change pack in functional
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
mindspore-ci-bot
fd18382853
!11759 [Numpy-Native] Add new numpy-native interfaces and graph support of some ops to mindspore.numpy
From: @yanglf1121
Reviewed-by: @liangchenghui
Signed-off-by:
5 years ago
jinyaohui
8022f9a6ed
modify pack to stack
5 years ago
yanglf1121
c5ea8223f5
Add new np interfaces and add graph support
5 years ago
mindspore-ci-bot
b189f177bb
Change tuple_getitem to TupleGetItem and some other ops, merge from r1.1 to master
5 years ago
mindspore-ci-bot
e897eb4c41
!11915 Change TensorAdd to Add, merge from r1.1 to master
From: @liangzhibo
Reviewed-by: @ginfung,@zh_qh
Signed-off-by: @zh_qh
5 years ago
buxue
25a4382921
rectify control_depend and deprecated
5 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
5 years ago
mindspore-ci-bot
066ebe516e
!11794 remove useless code of dot
From: @yuan_shen_zhou
Reviewed-by: @liangchenghui
Signed-off-by: @liangchenghui
5 years ago
zhouyuanshen
d1e6878011
remove dot
5 years ago
mindspore-ci-bot
9fa0499fa0
Change GatherV2 to Gather r1.1 to master
5 years ago
yanglf1121
72903c11c8
add array_ops, math_ops and tensor ops
5 years ago
Bairong
8cf43e59e0
hide arange, delete related test case and improve the doc string of nn.Range
5 years ago