Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in word explicitly #3376

Merged
merged 1 commit into from
Jun 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nnvm/python/nnvm/frontend/caffe2.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def _convert_operator(self,
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 explicitly for incompatible name, and
apply handlers to operator attributes.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion nnvm/python/nnvm/frontend/onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ def _convert_operator(self,
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 explicitly for incompatible name, and
apply handlers to operator attributes.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion nnvm/python/nnvm/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ def _convert_rnn_operator(self, op_name, inputs,
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 explicitly for incompatible name, and
apply handlers to operator attributes.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion nnvm/tests/python/frontend/mxnet/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 explicitly
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))

Expand Down
2 changes: 1 addition & 1 deletion python/tvm/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def asnode(self):

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 explicitly tell interpreter to retain __hash__ if we overide __eq__
# https://docs.python.org/3.1/reference/datamodel.html#object.__hash__
__hash__ = NodeBase.__hash__

Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/caffe2.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def _convert_operator(self,
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 explicitly for incompatible name, and
apply handlers to operator attributes.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ def _convert_operator(self,
attrs,
opset):
"""Convert ONNX operator into a Relay operator.
The converter must specify conversions explicity for incompatible name, and
The converter must specify conversions explicitly for incompatible name, and
apply handlers to operator attributes.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2277,7 +2277,7 @@ def _convert_control_flow_operator(self, node, inputs, attrs, control_flow_node_
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 explicitly for incompatible name, and
apply handlers to operator attributes.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion tests/python/frontend/mxnet/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 explicitly
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))

Expand Down