Skip to content

Commit

Permalink
fix filter sizes in bottleneck block (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
afourast authored and raghakot committed Jul 5, 2017
1 parent 9a2685a commit 5e9bcca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resnet.py
Expand Up @@ -147,7 +147,7 @@ def f(input):
kernel_initializer="he_normal",
kernel_regularizer=l2(1e-4))(input)
else:
conv_1_1 = _bn_relu_conv(filters=filters, kernel_size=(3, 3),
conv_1_1 = _bn_relu_conv(filters=filters, kernel_size=(1, 1),
strides=init_strides)(input)

conv_3_3 = _bn_relu_conv(filters=filters, kernel_size=(3, 3))(conv_1_1)
Expand Down

0 comments on commit 5e9bcca

Please sign in to comment.