Skip to content
New issue

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

CIFAR-10 and IMDB share a dataset split for validation and testing #1

Open
hazdzz opened this issue Dec 11, 2023 · 0 comments
Open

Comments

@hazdzz
Copy link

hazdzz commented Dec 11, 2023

I discovered that both CIFAR-10 and IMDB datasets utilize an identical dataset split for their validation and testing purposes. The relevant source code is presented below:

data_val = torch.load('./cifar10_test_vocab.pt').to(torch.int64)
labels_val = torch.load('./cifar10_test_targets_vocab.pt').to(torch.int64)

data_test = torch.load('./cifar10_test_vocab.pt').to(torch.int64)
labels_test = torch.load('./cifar10_test_targets_vocab.pt').to(torch.int64)
data_val = torch.load('./data/IMDB_test.pt').to(torch.int64)
labels_val = torch.load('./data/IMDB_test_targets.pt').to(torch.int64)

data_test = torch.load('./data/IMDB_test.pt').to(torch.int64)
labels_test = torch.load('./data/IMDB_test_targets.pt').to(torch.int64)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant