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

Commit

Permalink
Fix for Batchnorm odd & even chnls number context
Browse files Browse the repository at this point in the history
  • Loading branch information
akarbown committed Oct 29, 2020
1 parent 62b58d8 commit 2c11470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/unittest/test_gluon.py
Original file line number Diff line number Diff line change
Expand Up @@ -2210,7 +2210,7 @@ def hybrid_forward(self, F, x):
for i in range(len(chn_list)):
net = Net(chn_list[i])
net.initialize(init=init.Constant(1))
x = mx.nd.zeros((1, 3, 8, 160, 160), ctx=mx.cpu())
x = mx.nd.zeros((1, 3, 8, 160, 160))
net(x).asnumpy()


Expand Down

0 comments on commit 2c11470

Please sign in to comment.