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
50dd03ca
Commit
50dd03ca
authored
Jun 14, 2019
by
Alexander Pivovarov
Committed by
Haichen Shen
Jun 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in word explicitly (#3376)
parent
b8fa8f62
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
nnvm/python/nnvm/frontend/caffe2.py
+1
-1
nnvm/python/nnvm/frontend/onnx.py
+1
-1
nnvm/python/nnvm/frontend/tensorflow.py
+1
-1
nnvm/tests/python/frontend/mxnet/test_forward.py
+1
-1
python/tvm/expr.py
+1
-1
python/tvm/relay/frontend/caffe2.py
+1
-1
python/tvm/relay/frontend/onnx.py
+1
-1
python/tvm/relay/frontend/tensorflow.py
+1
-1
tests/python/frontend/mxnet/test_forward.py
+1
-1
No files found.
nnvm/python/nnvm/frontend/caffe2.py
View file @
50dd03ca
...
...
@@ -411,7 +411,7 @@ class Caffe2NetDef(object):
identity_list
=
None
,
convert_map
=
None
):
"""Convert from Caffe2 operator to nnvm operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
nnvm/python/nnvm/frontend/onnx.py
View file @
50dd03ca
...
...
@@ -963,7 +963,7 @@ class GraphProto(object):
identity_list
=
None
,
convert_map
=
None
):
"""Convert from onnx operator to nnvm operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
nnvm/python/nnvm/frontend/tensorflow.py
View file @
50dd03ca
...
...
@@ -1520,7 +1520,7 @@ class GraphProto(object):
def
_convert_operator
(
self
,
op_name
,
inputs
,
attrs
,
graph
,
identity_list
=
None
,
convert_map
=
None
):
"""Convert from Tensorflow operator to nnvm operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
nnvm/tests/python/frontend/mxnet/test_forward.py
View file @
50dd03ca
...
...
@@ -137,7 +137,7 @@ def test_forward_fc_flatten():
def
test_forward_clip
():
data
=
mx
.
sym
.
var
(
'data'
)
data
=
mx
.
sym
.
concat
(
data
,
-
data
,
dim
=
1
)
# negative part explicity
data
=
mx
.
sym
.
concat
(
data
,
-
data
,
dim
=
1
)
# negative part explicit
l
y
mx_sym
=
mx
.
sym
.
clip
(
data
,
a_min
=
0
,
a_max
=
1
)
verify_mxnet_frontend_impl
(
mx_sym
,
(
1
,
3
,
100
,
100
),
(
1
,
6
,
100
,
100
))
...
...
python/tvm/expr.py
View file @
50dd03ca
...
...
@@ -222,7 +222,7 @@ class NotEqualOp(NodeGeneric, ExprOp):
class
Expr
(
ExprOp
,
NodeBase
):
"""Base class of all tvm Expressions"""
# In Python3, We have to explicity tell interpreter to retain __hash__ if we overide __eq__
# In Python3, We have to explicit
l
y tell interpreter to retain __hash__ if we overide __eq__
# https://docs.python.org/3.1/reference/datamodel.html#object.__hash__
__hash__
=
NodeBase
.
__hash__
...
...
python/tvm/relay/frontend/caffe2.py
View file @
50dd03ca
...
...
@@ -505,7 +505,7 @@ class Caffe2NetDef(object):
identity_list
=
None
,
convert_map
=
None
):
"""Convert from Caffe2 operator to Relay operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
python/tvm/relay/frontend/onnx.py
View file @
50dd03ca
...
...
@@ -1154,7 +1154,7 @@ class GraphProto(object):
attrs
,
opset
):
"""Convert ONNX operator into a Relay operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
python/tvm/relay/frontend/tensorflow.py
View file @
50dd03ca
...
...
@@ -2277,7 +2277,7 @@ class GraphProto(object):
def
_convert_operator
(
self
,
op_name
,
inputs
,
attrs
,
graph
,
identity_list
=
None
,
convert_map
=
None
):
"""Convert from Tensorflow operator to relay operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicit
l
y for incompatible name, and
apply handlers to operator attributes.
Parameters
...
...
tests/python/frontend/mxnet/test_forward.py
View file @
50dd03ca
...
...
@@ -143,7 +143,7 @@ def test_forward_fc_flatten():
def
test_forward_clip
():
data
=
mx
.
sym
.
var
(
'data'
)
data
=
mx
.
sym
.
concat
(
data
,
-
data
,
dim
=
1
)
# negative part explicity
data
=
mx
.
sym
.
concat
(
data
,
-
data
,
dim
=
1
)
# negative part explicit
l
y
mx_sym
=
mx
.
sym
.
clip
(
data
,
a_min
=
0
,
a_max
=
1
)
verify_mxnet_frontend_impl
(
mx_sym
,
(
1
,
3
,
100
,
100
),
(
1
,
6
,
100
,
100
))
...
...
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