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

Commit

Permalink
cnn : reduce patch size
Browse files Browse the repository at this point in the history
  • Loading branch information
starcolon committed Apr 17, 2017
1 parent a6c9a35 commit 3112178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/cnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def new(self, image_dim, final_vec_dim):
l_conv1 = layers.Conv2DLayer(l_max0, 32, (5,5))
l_max1 = layers.MaxPool2DLayer(l_conv1, (5,5), stride=2)
l_conv2 = layers.Conv2DLayer(l_conv1, 32, (3,3))
l_pool = layers.MaxPool2DLayer(l_conv2, (5,5), stride=1)
l_pool = layers.MaxPool2DLayer(l_conv2, (3,3), stride=1)
l_1d1 = layers.DenseLayer(l_pool, 24)
l_1d2 = layers.DenseLayer(l_1d1, 8)
l_1d3 = layers.DenseLayer(l_1d2, 1)
Expand Down

0 comments on commit 3112178

Please sign in to comment.