Skip to content

Commit

Permalink
relu
Browse files Browse the repository at this point in the history
  • Loading branch information
sdierauf committed May 23, 2016
1 parent 7c98f14 commit 5b431db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tiny_imagenet_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
model.add(Convolution2D(192, 1, 1, border_mode='same'))
model.add(Activation('relu'))
model.add(Convolution2D(10, 1, 1, border_mode='same'))
AveragePooling2D(pool_size=(6, 6), strides=None, border_mode='valid', dim_ordering='th')
model.add(Activation('relu'))
AveragePooling2D(pool_size=(6, 6), strides=None, border_mode='same', dim_ordering='th')
# model.add(Activation('relu'))
model.add(Flatten())
# model.add(Dense(512))
Expand Down

0 comments on commit 5b431db

Please sign in to comment.