Skip to content

Commit

Permalink
roll back original architecture of arch_deepspeech.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Soonhwan-Kwon committed Jul 6, 2017
1 parent 58e9707 commit 96c629d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch_deepspeech.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def arch(args, seq_len=None):
stride=conv_layer2_stride,
no_bias=is_batchnorm,
name='conv2')
# if is_batchnorm:
# # batch norm normalizes axis 1
# net = batchnorm(net, name="conv2_batchnorm")
if is_batchnorm:
# batch norm normalizes axis 1
net = batchnorm(net, name="conv2_batchnorm")

net = mx.sym.transpose(data=net, axes=(0, 2, 1, 3))
net = mx.sym.Reshape(data=net, shape=(0, 0, -3))
Expand Down

0 comments on commit 96c629d

Please sign in to comment.