I have some questions about paper and your implementation.
jeongHwarr opened this issue · 2 comments
Hello. I'm impressed with the idea of this paper and want to apply it to my project.
But there was an incomprehensible part between your thesis and code implementation.
In my understanding, CIC means difference between target score of original input image and target score multiplied by Mask and input image. Did I get it wrong?
In CIC, doesn't
Thank you!
Hi, @jeongHwarr. Thanks for your interest!
X_b
is not the input image, it is a baseline. In my implementation, I just use a black image (all zeros) as a baseline, so you can ignore X_b
here. Then the CIC is just the classification score of the masked input. If you are interested, you can try to use the input image as a baseline, it should also be fine.
Please let me know if you have further questions to apply this method to your project, I'm willing to help.
@haofanwang Okay I got it! Thank you for your reply