File "/content/drive/My Drive/FashionPlus/separate_vae/data/pickle_dataset.py", line 21, in initialize
with open(os.path.join(opt.dataroot, '{}.p'.format(opt.phase)), 'rb') as readfile:
FileNotFoundError: [Errno 2] No such file or directory: './datasets/demo/test.p'
Now when I create an empty test.p file in seperation_vae/datasets/demo/test.p and run
I get the following error
File "/content/drive/My Drive/FashionPlus/separate_vae/data/pickle_dataset.py", line 22, in initialize
self.pickle_file = pickle.load(readfile)
EOFError: Ran out of input
Which I guess is due to reading an empty file.
How do you suggest to fix this?
When I run encode_shape_texture_features.sh
I get the following error
File "/content/drive/My Drive/FashionPlus/separate_vae/data/pickle_dataset.py", line 21, in initialize with open(os.path.join(opt.dataroot, '{}.p'.format(opt.phase)), 'rb') as readfile: FileNotFoundError: [Errno 2] No such file or directory: './datasets/demo/test.p'
Now when I create an empty test.p file in seperation_vae/datasets/demo/test.p and run
I get the following error File "/content/drive/My Drive/FashionPlus/separate_vae/data/pickle_dataset.py", line 22, in initialize self.pickle_file = pickle.load(readfile) EOFError: Ran out of input Which I guess is due to reading an empty file. How do you suggest to fix this?