Skip to content

Commit

Permalink
Merge pull request chainer#4121 from takaaki82/example/googlenetbn
Browse files Browse the repository at this point in the history
Change the size of out1 in inc4c and inc4d
  • Loading branch information
mitmul committed Dec 22, 2017
2 parents 37d6b69 + 3b3d5f5 commit 7d0d6e7
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 7d0d6e7

Please sign in to comment.