Skip to content

Commit 936e86d

Browse files
committed
Fix PIFGSMPP load error
1 parent 81a7469 commit 936e86d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

code_coverage/on_server.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"EADEN : clean_acc=1.00 robust_acc=0.00 sec=7.04\n",
9999
"- targeted : clean_acc=1.00 robust_acc=0.00 sec=7.04\n",
100100
"PIFGSM : clean_acc=1.00 robust_acc=0.00 sec=0.07\n",
101-
"PIFGSMPLUSPLUS: clean_acc=1.00 robust_acc=0.00 sec=0.07\n",
101+
"PIFGSMPP : clean_acc=1.00 robust_acc=0.00 sec=0.07\n",
102102
"- targeted : clean_acc=1.00 robust_acc=1.00 sec=0.07\n",
103103
"CW : clean_acc=1.00 robust_acc=0.00 sec=0.30\n",
104104
"- targeted : clean_acc=1.00 robust_acc=0.20 sec=0.30\n",

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# The short X.Y version
2828
version = 'v3.5'
2929
# The full version, including alpha/beta/rc tags
30-
release = 'v3.5.0'
30+
release = 'v3.5.1'
3131

3232

3333
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setuptools.setup(
1111
name = 'torchattacks',
12-
version = '3.5.0',
12+
version = '3.5.1',
1313
description='Torchattacks is a PyTorch library that provides adversarial attacks to generate adversarial examples.',
1414
author = 'Harry Kim',
1515
author_email='24k.harry@gmail.com',

torchattacks/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
from .wrappers.multiattack import MultiAttack
5252
from .wrappers.lgv import LGV
5353

54-
__version__ = "3.5.0"
54+
__version__ = "3.5.1"
5555
__all__ = [
5656
"VANILA",
5757
"GN",
@@ -79,7 +79,7 @@
7979
"EADL1",
8080
"EADEN",
8181
"PIFGSM",
82-
"PIFGSMPLUSPLUS",
82+
"PIFGSMPP",
8383
"CW",
8484
"PGDL2",
8585
"DeepFool",

0 commit comments

Comments
 (0)