RobustBench / robustbench

RobustBench: a standardized adversarial robustness benchmark [NeurIPS 2021 Benchmarks and Datasets Track]
https://robustbench.github.io
Other
672 stars 99 forks source link

Downloaded model .pt files seem to be empty #94

Closed phoenixwilliams closed 2 years ago

phoenixwilliams commented 2 years ago

Hi,

I am trying to load a model using RobustBench however I get a "EOFError: Ran out of input" error when it is trying to load the model. My code is `from robustbench.data import load_cifar10

x_test, y_test = load_cifar10(n_examples=50)

from robustbench.utils import load_model

model = load_model(model_name='Standard', dataset='cifar10', threat_model='Linf')`

But it seems to be the case for various other models also.

Any help in sorting this would be much appreciated, many thanks