Skip to content

Commit

Permalink
Fix PIFGSMPP load error
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry24k committed Oct 20, 2023
1 parent 81a7469 commit 936e86d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code_coverage/on_server.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions torchattacks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -79,7 +79,7 @@
"EADL1",
"EADEN",
"PIFGSM",
"PIFGSMPLUSPLUS",
"PIFGSMPP",
"CW",
"PGDL2",
"DeepFool",
Expand Down

0 comments on commit 936e86d

Please sign in to comment.