wanggrun / Adaptively-Connected-Neural-Networks

A re-implementation of our CVPR 2019 paper "Adaptively Connected Neural Networks"
145 stars 29 forks source link

Question about paper and implementation #1

Open lxtGH opened 5 years ago

lxtGH commented 5 years ago

Hi! Thanks for sharing your code. After I read your paper, I found this idea is very interesting and it is a little like SN(switchable normalization). I have a little question about your paper and implementation.

  1. why use GAP why not use 2*2 pooling or ASPP?(Memory issue or computation cost?)
  2. Why you add two fc layer after GAP in pixel aware ACnet?
  3. Have you did some count importance of each individual learned parameters like SN.
wanggrun commented 5 years ago

Hi! Thanks for sharing your code. After I read your paper, I found this idea is very interesting and it is a little like SN(switchable normalization). I have a little question about your paper and implementation.

  1. why use GAP why not use 2*2 pooling or ASPP?(Memory issue or computation cost?)
  2. Why you add two fc layer after GAP in pixel aware ACnet?
  3. Have you did some count importance of each individual learned parameters like SN.

Thank you for the interest in our work. 1) Actually, GAP can be replaced with other types of downsampling (including image resizing) without losing accuracies. We employ GAP here to save memory, computational time, and PARAMETERs.

  1. In fact, one fc layer is also OK, depending on the the number of the channels.

  2. We have visualized them and found that different layers/pixels/images have different importance degrees.

lxtGH commented 5 years ago

Hi! Thanks for your reply. In your implementation of pixel-aware convolution, this seems to be contradictory to Equation 3 in your paper, I don't understand the relationship between Equation 3 and your code.

wanggrun commented 5 years ago

Hi! Thanks for your reply. In your implementation of pixel-aware convolution, this seems to be contradictory to Equation 3 in your paper, I don't understand the relationship between Equation 3 and your code.

Thanks. When using one fc layer, Eqn. 3 is equivalent to the code. Note that $\Sigma \mathbf{x}\mathbf{u}$ is omitted for parameter-saving. Please refer to the experimental section (last few lines, left column, Page 5).

mrzhangzizhen123 commented 5 years ago

@lxtGH Hello, I have also seen this article. Is it ok if I use other data for this article?If so, what should be done with this data?Please give me some help. Thank you.

yhx0105 commented 4 years ago

@lxtGH Hello, I have also seen this article. Is it ok if I use other data for this article?If so, what should be done with this data?Please give me some help. Thank you.

I have the same question

lxtGH commented 4 years ago

Sorry I don't know either, please contact the author.