You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i was running python main.py --dataset cifar10 --imb_type exp --imb_factor 0.01 --alg open -p 100 --lambda_o 1 -ab 512 --gpu_str 'cpu', there occurs an errors: FileNotFoundError: [Errno 2] No such file or directory: '../data/tiny_images.bin', please tell me what is this, and how to solve it? Thanks :)The follow is the error info:
Traceback (most recent call last):
File "/Volumes/T7/Code4Paper/open-sampling/main.py", line 156, in <module>
main()
File "/Volumes/T7/Code4Paper/open-sampling/main.py", line 87, in main
main_worker(args.gpu, ngpus_per_node, args)
File "/Volumes/T7/Code4Paper/open-sampling/main.py", line 122, in main_worker
alg = create_alg(args, gpu, num_classes, cls_num_list, train_dataset)
File "/Volumes/T7/Code4Paper/open-sampling/alg/utils.py", line 9, in create_alg
alg = OODNoise(args, gpu, num_classes, cls_num_list, train_dataset)
File "/Volumes/T7/Code4Paper/open-sampling/alg/ood_noise.py", line 12, in __init__
super(OODNoise, self).__init__(args, gpu, num_classes, cls_num_list, train_dataset)
File "/Volumes/T7/Code4Paper/open-sampling/alg/oe.py", line 18, in __init__
self.ood_data = create_ood_dataset(args)
File "/Volumes/T7/Code4Paper/open-sampling/dataset/utils.py", line 52, in create_ood_dataset
ood_dataset = TinyImages(transform=trn.Compose(
File "/Volumes/T7/Code4Paper/open-sampling/dataset/tinyimages_80mn_loader.py", line 11, in __init__
data_file = open('../data/tiny_images.bin', "rb")
FileNotFoundError: [Errno 2] No such file or directory: '../data/tiny_images.bin'
The text was updated successfully, but these errors were encountered:
When i was running
python main.py --dataset cifar10 --imb_type exp --imb_factor 0.01 --alg open -p 100 --lambda_o 1 -ab 512 --gpu_str 'cpu'
, there occurs an errors: FileNotFoundError: [Errno 2] No such file or directory: '../data/tiny_images.bin', please tell me what is this, and how to solve it? Thanks :)The follow is the error info:The text was updated successfully, but these errors were encountered: