-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluate on 224 x 224 RGB Image #1
Comments
Hi, you can check the infidelity and sensitivity numbers reported in our paper. For imagenet we increased the number of samples, and added a small diagonal matrix before inverse to ensure stability. These both improve the sensitivity to a stable range I think. I'll try to update our code for a larger image size. |
Hi, |
Hi, the main difference between MNIST and Imagenet is that it becomes a global explanation (see 2.5 in the paper). In the code, binary_I should be true in the function evaluate_infid_sen(), and also pert variable should be set to 'Square'. In this case, the norm for Imagenet data is around 3.5. I believe you might have used Gaussian perturbation for Imagenet data since your norm value is way too small. |
Hi
I have my model trained on [3 x 224 x 224] images. But when I modify your code [for the parts to reshape into 3 x 224 x 224] and run on the model I get infidelity values around 1-2, I think that's in a good range. But I get a very high value of sensitivity [in range of thousands]. Am I missing something?
Thank you.
Regards,
Dharma KC
The text was updated successfully, but these errors were encountered: