Skip to content

Commit c5d17a6

Browse files
committed
updated pytorch version in setup.py, added models and updated gitignore. closes #3
1 parent b1e159e commit c5d17a6

File tree

7 files changed

+5
-2
lines changed

7 files changed

+5
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
__pycache__/
22
.ipynb_checkpoints/
33
*.log
4-
*.pth
4+
*.pth
5+
!models/*.pth

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ convex outer bounds on the adversarial polytope. Created by [Eric Wong](https://
66
[paper]: https://arxiv.org/abs/1711.00851
77

88
## News
9+
+ 4/26/2018 - Added robust models from the paper to the `models/` folder in the
10+
repository.
911
+ 3/4/2018 - Updated paper with more experiments. Code migrated to work with
1012
PyTorch 0.3.0+. Real mini-batching implemented, with a 5x speedup over the
1113
old codebase, and several NaN bugfixes.

models/fashion_mnist.pth

651 KB
Binary file not shown.

models/har.pth

1.08 MB
Binary file not shown.

models/mnist.pth

651 KB
Binary file not shown.

models/svhn.pth

841 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
url='https://github.com/locuslab/convex_adversarial',
1212
packages=['convex_adversarial'],
1313
install_requires=[
14-
'torch>=0.3'
14+
'torch==0.3'
1515
]
1616
)

0 commit comments

Comments
 (0)