Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fixed a typo. (#5363)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeykolychev authored and piiswrong committed Mar 13, 2017
1 parent 8b6c859 commit 8102d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/mxnet/rnn/rnn_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -1200,10 +1200,10 @@ def unroll(self, length, inputs=None, begin_state=None,
if not merge_outputs:
if isinstance(l_outputs, symbol.Symbol):
l_outputs = list(symbol.SliceChannel(l_outputs, axis=axis,
num_outputs=length, sequeeze_axis=1))
num_outputs=length, squeeze_axis=1))
if isinstance(r_outputs, symbol.Symbol):
r_outputs = list(symbol.SliceChannel(r_outputs, axis=axis,
num_outputs=length, sequeeze_axis=1))
num_outputs=length, squeeze_axis=1))

if merge_outputs:
l_outputs = [l_outputs]
Expand Down

0 comments on commit 8102d5b

Please sign in to comment.