diff --git a/code_coverage/on_server.ipynb b/code_coverage/on_server.ipynb index 2a475446..9213bff7 100644 --- a/code_coverage/on_server.ipynb +++ b/code_coverage/on_server.ipynb @@ -98,7 +98,7 @@ "EADEN : clean_acc=1.00 robust_acc=0.00 sec=7.04\n", "- targeted : clean_acc=1.00 robust_acc=0.00 sec=7.04\n", "PIFGSM : clean_acc=1.00 robust_acc=0.00 sec=0.07\n", - "PIFGSMPLUSPLUS: clean_acc=1.00 robust_acc=0.00 sec=0.07\n", + "PIFGSMPP : clean_acc=1.00 robust_acc=0.00 sec=0.07\n", "- targeted : clean_acc=1.00 robust_acc=1.00 sec=0.07\n", "CW : clean_acc=1.00 robust_acc=0.00 sec=0.30\n", "- targeted : clean_acc=1.00 robust_acc=0.20 sec=0.30\n", diff --git a/docs/conf.py b/docs/conf.py index 615c9fc1..cc956ebf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = 'v3.5' # The full version, including alpha/beta/rc tags -release = 'v3.5.0' +release = 'v3.5.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 476e34a4..684d5871 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setuptools.setup( name = 'torchattacks', - version = '3.5.0', + version = '3.5.1', description='Torchattacks is a PyTorch library that provides adversarial attacks to generate adversarial examples.', author = 'Harry Kim', author_email='24k.harry@gmail.com', diff --git a/torchattacks/__init__.py b/torchattacks/__init__.py index 1c2b2338..48f18a74 100644 --- a/torchattacks/__init__.py +++ b/torchattacks/__init__.py @@ -51,7 +51,7 @@ from .wrappers.multiattack import MultiAttack from .wrappers.lgv import LGV -__version__ = "3.5.0" +__version__ = "3.5.1" __all__ = [ "VANILA", "GN", @@ -79,7 +79,7 @@ "EADL1", "EADEN", "PIFGSM", - "PIFGSMPLUSPLUS", + "PIFGSMPP", "CW", "PGDL2", "DeepFool",