vineetm / ell-881-2018-deep-learning

Course Materials for ELL 881 2018: Fundamentals of Deep Learning
9 stars 7 forks source link

Attention map visualisation #48

Open mehak126 opened 5 years ago

mehak126 commented 5 years ago

Are attention maps the same as class activation maps in CNNs? I'm having a little trouble trying to understand how the attention weights are used to represent the maps. Could someone send some links to understand the same if possible?

abhudev commented 5 years ago

Attention weights are 2D weights, so they form an image, which you can overlay on the original image to see which objects are the "center of attention" for the CNN. It is similar to class activation maps.

mehak126 commented 5 years ago

Got it, thanks! :)