Skip to content

Commit

Permalink
Fix typo in word explicitly (apache#3376)
Browse files Browse the repository at this point in the history
  • Loading branch information
apivovarov authored and Wei Chen committed Jun 26, 2019
1 parent 82a5546 commit b8b93f8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
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 @@ -1550,7 +1550,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

0 comments on commit b8b93f8

Please sign in to comment.