Skip to content

Commit

Permalink
Change the size of out1 in inc4c and inc4d chainer#4120
Browse files Browse the repository at this point in the history
  • Loading branch information
ta7uw committed Dec 19, 2017
1 parent 3c717e2 commit 3b3d5f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/imagenet/googlenetbn.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def __init__(self):
self.inc4b = L.InceptionBN(
None, 192, 96, 128, 96, 128, 'avg', 128)
self.inc4c = L.InceptionBN(
None, 128, 128, 160, 128, 160, 'avg', 128)
None, 160, 128, 160, 128, 160, 'avg', 128)
self.inc4d = L.InceptionBN(
None, 64, 128, 192, 160, 192, 'avg', 128)
None, 96, 128, 192, 160, 192, 'avg', 128)
self.inc4e = L.InceptionBN(
None, 0, 128, 192, 192, 256, 'max', stride=2)
self.inc5a = L.InceptionBN(
Expand Down

0 comments on commit 3b3d5f5

Please sign in to comment.