Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chained residual pooling #21

Open
dkatsios opened this issue Nov 30, 2018 · 0 comments
Open

chained residual pooling #21

dkatsios opened this issue Nov 30, 2018 · 0 comments

Comments

@dkatsios
Copy link

Thanks for sharing
I think that at the chained residual pooling block there is a mistake.
Based on Fig. 3 of the paper, the input to the second, third etc. Pool layer is the output of the previous one, not the output of the ReLU layer:

def ChainedResidualPooling(inputs,features=256):
    net_relu=tf.nn.relu(inputs)
    net=slim.max_pool2d(net_relu, [5, 5],stride=1,padding='SAME')
    net=slim.conv2d(net,features,3)
    net_sum_1=tf.add(net,net_relu)

    # net = slim.max_pool2d(net_relu, [5, 5], stride=1, padding='SAME')
    net = slim.max_pool2d(net, [5, 5], stride=1, padding='SAME')

    net = slim.conv2d(net, features, 3)
    net_sum_2=tf.add(net,net_sum_1)

    return net_sum_2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant