Update README.md
Browse files
README.md
CHANGED
@@ -6,4 +6,38 @@ datasets:
|
|
6 |
- ILSVRC/imagenet-1k
|
7 |
tags:
|
8 |
- Adversarial Robustness
|
9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- ILSVRC/imagenet-1k
|
7 |
tags:
|
8 |
- Adversarial Robustness
|
9 |
+
---
|
10 |
+
|
11 |
+
# MixedNUTS: Training-Free Accuracy-Robustness Balance via Nonlinearly Mixed Classifiers
|
12 |
+
|
13 |
+
This is the official model repository of the preprint paper \
|
14 |
+
*[MixedNUTS: Training-Free Accuracy-Robustness Balance via Nonlinearly Mixed Classifiers](https://arxiv.org/abs/2402.02263)* \
|
15 |
+
by [Yatong Bai](https://bai-yt.github.io), [Mo Zhou](https://cdluminate.github.io), [Vishal M. Patel](https://engineering.jhu.edu/faculty/vishal-patel), and [Somayeh Sojoudi](https://www2.eecs.berkeley.edu/Faculty/Homepages/sojoudi.html).
|
16 |
+
|
17 |
+
**TL;DR:** MixedNUTS balances clean data classification accuracy and adversarial robustness without additional training
|
18 |
+
via a mixed classifier with nonlinear base model logit transformations.
|
19 |
+
|
20 |
+
Here, we provide the download links to the standard base classifiers used in the main results.
|
21 |
+
| Dataset | Link |
|
22 |
+
|-----------|-------|
|
23 |
+
| CIFAR-10 | [Download](https://huggingface.co/Bai-YT/MixedNUTS/resolve/main/cifar10_std_rn152.pt?download=true) |
|
24 |
+
| CIFAR-100 | [Download](https://huggingface.co/Bai-YT/MixedNUTS/resolve/main/cifar100_std_rn152.pt?download=true) |
|
25 |
+
| ImageNet | [Download](https://dl.fbaipublicfiles.com/convnext/convnextv2/im22k/convnextv2_large_22k_224_ema.pt) |
|
26 |
+
|
27 |
+
For code and detailed usage, please refer to our [GitHub repository](https://github.com/Bai-YT/MixedNUTS).
|
28 |
+
|
29 |
+
<center>
|
30 |
+
<img src=“main_figure.png” alt=“MixedNUTS Results” title=“Results” width=“800"/>
|
31 |
+
</center>
|
32 |
+
|
33 |
+
|
34 |
+
#### Citing our work (BibTeX)
|
35 |
+
|
36 |
+
```bibtex
|
37 |
+
@article{MixedNUTS,
|
38 |
+
title={MixedNUTS: Training-Free Accuracy-Robustness Balance via Nonlinearly Mixed Classifiers},
|
39 |
+
author={Bai, Yatong and Zhou, Mo and Patel, Vishal M. and Sojoudi, Somayeh},
|
40 |
+
journal={arXiv preprint arXiv:2402.02263},
|
41 |
+
year={2024}
|
42 |
+
}
|
43 |
+
```
|