We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we shuffle the test dataset to avoid having all birds or all bicycles in a batch.
We also only run the Decision Boundary attack on 100 images because it is too slow to run on the full 1000 image test set.
However, this results in choosing a different 100 images subset each time we run the Decision Boundary attack.
One solution here would be to get the dataset with bird_or_bicyle.get_iterator('test', shuffle=False) and then deterministically shuffle the dataset.
bird_or_bicyle.get_iterator('test', shuffle=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we shuffle the test dataset to avoid having all birds or all bicycles in a batch.
We also only run the Decision Boundary attack on 100 images because it is too slow to run on the full 1000 image test set.
However, this results in choosing a different 100 images subset each time we run the Decision Boundary attack.
One solution here would be to get the dataset with
bird_or_bicyle.get_iterator('test', shuffle=False)
and then deterministically shuffle the dataset.The text was updated successfully, but these errors were encountered: