aamir-mustafa / super-resolution-adversarial-defense

Image Super-Resolution as a Defense Against Adversarial Attacks
88 stars 16 forks source link

test result #5

Closed luyao-cv closed 4 years ago

luyao-cv commented 4 years ago

I used your test picture img63 (junco) to test. The size of the super-resolution magnification is 598 598, and the default of InceptionV3 is 298 298, so I changed the target_size to 298 * 298, but the result of the operation It is almost the same as adversarial_images. May I ask why?

aamir-mustafa commented 4 years ago

Hi,

That will for sure not work. You need to pass the 2x image through the network. The Inception v3 network can also take 2x images because of the GAP layer in the end.

Thanks