Skip to content

Commit

Permalink
docs: register FIA
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerwooo committed Feb 26, 2024
1 parent bce005d commit d57a3ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Gradient-based attacks:
| VMI-FGSM | $\ell_\infty$ | [Enhancing the Transferability of Adversarial Attacks through Variance Tuning](https://arxiv.org/abs/2103.15571) | `torchattack.VMIFGSM` |
| VNI-FGSM | $\ell_\infty$ | [Enhancing the Transferability of Adversarial Attacks through Variance Tuning](https://arxiv.org/abs/2103.15571) | `torchattack.VNIFGSM` |
| Admix | $\ell_\infty$ | [Admix: Enhancing the Transferability of Adversarial Attacks](https://arxiv.org/abs/2102.00436) | `torchattack.Admix` |
| FIA | $\ell_\infty$ | [Feature Importance-aware Transferable Adversarial Attacks](https://arxiv.org/abs/2107.14185) | `torchattack.FIA` |

Others:

Expand Down
2 changes: 2 additions & 0 deletions src/torchattack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from torchattack.deepfool import DeepFool
from torchattack.difgsm import DIFGSM
from torchattack.fgsm import FGSM
from torchattack.fia import FIA
from torchattack.geoda import GeoDA
from torchattack.mifgsm import MIFGSM
from torchattack.nifgsm import NIFGSM
Expand All @@ -18,6 +19,7 @@
'Admix',
'DeepFool',
'DIFGSM',
'FIA',
'FGSM',
'GeoDA',
'MIFGSM',
Expand Down

0 comments on commit d57a3ae

Please sign in to comment.