Open
Description
Thank you for your great tutorials!
I have a question about codes in the cell 11 in Inception_ResNet_DenseNet.ipynb for JAX.
Max-pool branch looks like a 1x1 convolution branch,
because the output of nn.max_pool() is not used.
x_max = nn.max_pool(x, (3, 3), strides=(2, 2))
x_max = nn.Conv(self.c_out["max"], kernel_size=(1, 1), kernel_init=googlenet_kernel_init, use_bias=False)(x)
I guess, here should be :
x_max = nn.max_pool(x, (3, 3), strides=(1, 1))
x_max = nn.Conv(self.c_out["max"], kernel_size=(1, 1), kernel_init=googlenet_kernel_init, use_bias=False)(x_max)
With strides = (2, 2), the feature size gets half of the original, so, the "strides" should be (1,1).
Thank you.
Metadata
Assignees
Labels
No labels