Skip to content
Snippets Groups Projects
Commit 4c42a074 authored by Mina Moshfegh's avatar Mina Moshfegh
Browse files

Upload New File

parent 3f5c5b7d
No related branches found
No related tags found
No related merge requests found
# This init file makes it easy to import the main attack classes
# all at once from the attacks package.
from .base_attack import BaseAttack
from .fgsm import FGSMAttack
from .pgd import PGDAttack
# By listing them here, other scripts can do:
# from attacks import BaseAttack, FGSMAttack, PGDAttack
__all__ = ["BaseAttack", "FGSMAttack", "PGDAttack"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment