Last active
September 19, 2020 15:22
-
-
Save ntakouris/fcdeab90d93f634a936ac79108a85b77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The following are for full precision (fp32) original resnset18: | |
cifar100 L2 1e-4 - top5 accuracy | |
unclamped => 0.77 | |
threshold = 1e-08 => 0.77 | |
threshold = 1e-07 => 0.77 | |
threshold = 1e-06 => 0.77 | |
threshold = 1e-05 => 0.77 | |
threshold = 0.0001 => 0.77 | |
threshold = 0.001 => 0.77 | |
threshold = 0.01 => 0.77 | |
threshold = 0.1 => 0.692 | |
threshold = 0.2 => 0.628 | |
threshold = 0.5 => 0.532 | |
cifar100 L1 5e-5 - top5 accuracy | |
unclamped => 1 | |
threshold = 1e-08 => 0.803 | |
threshold = 1e-07 => 0.803 | |
threshold = 1e-06 => 0.803 | |
threshold = 1e-05 => 0.803 | |
threshold = 0.0001 => 0.803 | |
threshold = 0.001 => 0.803 | |
threshold = 0.01 => 0.803 | |
threshold = 0.1 => 0.749 | |
threshold = 0.2 => 0.68 | |
threshold = 0.5 => 0.623 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment