utkuozbulak / pytorch-cnn-visualizations

Pytorch implementation of convolutional neural network visualization techniques
MIT License
7.81k stars 1.49k forks source link

Hi! different functions of feature maps. #80

Closed wqz960 closed 4 years ago

wqz960 commented 4 years ago

Great work! Can you tell me the function of different feature maps, what function are they used to tell us? Thank you !

utkuozbulak commented 4 years ago

Hello,

You can read relevant papers to get informed on this topic (papers are linked in the README).

wqz960 commented 4 years ago

Hi! the guided backprop function means that during BP, the gradient = 1 where gradient > 0 and the gradient = 0 where gradient < 0 through RELU activation? Is it True? Thank you!