Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
0f4c151f
Commit
0f4c151f
authored
Sep 09, 2019
by
雾雨魔理沙
Committed by
Thierry Moreau
Sep 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Relay][Training] Add gradient for max. (#3915)
* save * save
parent
83d2418a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
+25
-2
python/tvm/relay/op/_tensor_grad.py
+13
-1
tests/python/relay/test_op_grad_level4.py
+12
-1
No files found.
python/tvm/relay/op/_tensor_grad.py
View file @
0f4c151f
...
...
@@ -25,7 +25,7 @@ from ..expr import Tuple, TupleGetItem, const
from
.
import
nn
as
_nn
from
.op
import
register_gradient
from
.reduce
import
sum
as
_sum
from
.tensor
import
cos
,
exp
,
less
,
negative
,
ones_like
,
power
,
sin
,
zeros_like
from
.tensor
import
cos
,
exp
,
less
,
negative
,
ones_like
,
power
,
sin
,
zeros_like
,
equal
from
.transform
import
(
broadcast_to_like
,
collapse_sum_like
,
...
...
@@ -269,6 +269,18 @@ def conv2d_grad(orig, grad):
return
[
backward_data
,
backward_weight
]
@register_gradient
(
"max"
)
def
max_grad
(
orig
,
grad
):
"""Returns the gradient of max"""
# Only support axis=0, since broadcasting orig to x behaves incorrectly
x
,
axis
=
orig
.
args
[
0
],
orig
.
attrs
.
axis
assert
(
axis
is
not
None
and
len
(
axis
)
==
1
and
int
(
axis
[
0
])
==
0
)
orig
=
broadcast_to_like
(
orig
,
x
)
grad
=
broadcast_to_like
(
grad
,
x
)
indicators
=
cast_like
(
equal
(
orig
,
x
),
grad
)
return
[
indicators
*
grad
]
@register_gradient
(
"nn.softmax"
)
def
softmax_grad
(
orig
,
grad
):
"""Gradient of softmax"""
...
...
tests/python/relay/test_op_grad_level4.py
View file @
0f4c151f
...
...
@@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import
pytest
from
tvm
import
relay
from
tvm.relay.testing
import
check_grad
...
...
@@ -30,6 +31,16 @@ def test_sum_grad():
verify_sum_grad
((
4
,
2
,
1
),
axis
=
(
1
,
2
),
exclude
=
True
)
def
test_max_grad
():
s
=
(
5
,
10
)
t
=
relay
.
TensorType
(
s
)
x
=
relay
.
var
(
"x"
,
t
)
axis
=
0
z
=
relay
.
max
(
x
,
axis
)
fwd_func
=
relay
.
Function
([
x
],
z
)
check_grad
(
fwd_func
,
eps
=
1e-7
,
rtol
=
1
)
if
__name__
==
"__main__"
:
test_sum_grad
()
pytest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment