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
f5e2c44e
Commit
f5e2c44e
authored
Dec 14, 2019
by
Ina Dobreva
Committed by
Tianqi Chen
Dec 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix][Frontend][TFlite] Fix wrong function call in TANH tests (#4517)
* Replace sigmoid() with tanh() in tests for TANH
parent
f10944c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
tests/python/frontend/tflite/test_forward.py
+1
-1
No files found.
tests/python/frontend/tflite/test_forward.py
View file @
f5e2c44e
...
@@ -1030,7 +1030,7 @@ def _test_tanh(data):
...
@@ -1030,7 +1030,7 @@ def _test_tanh(data):
""" One iteration of TANH """
""" One iteration of TANH """
with
tf
.
Graph
()
.
as_default
():
with
tf
.
Graph
()
.
as_default
():
in_data
=
array_ops
.
placeholder
(
shape
=
data
.
shape
,
dtype
=
data
.
dtype
)
in_data
=
array_ops
.
placeholder
(
shape
=
data
.
shape
,
dtype
=
data
.
dtype
)
out
=
math_ops
.
sigmoid
(
in_data
)
out
=
math_ops
.
tanh
(
in_data
)
compare_tflite_with_tvm
(
data
,
'Placeholder:0'
,
[
in_data
],
[
out
])
compare_tflite_with_tvm
(
data
,
'Placeholder:0'
,
[
in_data
],
[
out
])
def
test_forward_tanh
():
def
test_forward_tanh
():
...
...
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