Skip to content

Commit

Permalink
Review comments updated
Browse files Browse the repository at this point in the history
  • Loading branch information
siju-samuel committed Aug 13, 2018
1 parent 8b86982 commit 6697ca8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nnvm/python/nnvm/frontend/darknet.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ def _handle_darknet_rnn_layers(self, layer_num, sym):

elif LAYERTYPE.LSTM == layer.type:
if layer.steps > 1:
raise NotImplementedError("Currenty support only single step GRU")
raise NotImplementedError("Currently support only single step GRU")

op_name_add = 'elemwise_add'
op_name_mul = 'elemwise_mul'
Expand Down Expand Up @@ -771,7 +771,7 @@ def _handle_darknet_rnn_layers(self, layer_num, sym):

elif LAYERTYPE.GRU == layer.type:
if layer.steps > 1:
raise NotImplementedError("Currenty support only single step GRU")
raise NotImplementedError("Currently support only single step GRU")

op_name_add = 'elemwise_add'
op_name_mul = 'elemwise_mul'
Expand Down
2 changes: 1 addition & 1 deletion nnvm/tests/python/frontend/darknet/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,4 +433,4 @@ def test_forward_activation_logistic():
test_forward_crnn()
test_forward_lstm()
test_forward_gru()
test_forward_activation_logistic()
test_forward_activation_logistic()

0 comments on commit 6697ca8

Please sign in to comment.