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
GQN/dataset/convert2torch.py generate data files compressed by gzip.
But GQNDataset class expect uncompressed files.
The following error occurred when I executed GAN/train.py with the directory generated by convert2torch.py.
Traceback (most recent call last):
File "train.py", line 94, in <module>
x_data_test, v_data_test = next(iter(test_loader))
File "/home/hoge/venv/pytorch-py36-cuda9/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 615, in __next__
batch = self.collate_fn([self.dataset[i] for i in indices])
File "/home/hoge/venv/pytorch-py36-cuda9/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 615, in <listcomp>
batch = self.collate_fn([self.dataset[i] for i in indices])
File "/home/hoge/work/pixyzoo/GQN/gqn_dataset.py", line 32, in __getitem__
data = torch.load(scene_path)
File "/home/hoge/venv/pytorch-py36-cuda9/lib/python3.6/site-packages/torch/serialization.py", line 365, in load
f = open(f, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: 'dataset/rooms_ring_camera-torch/train/1414.pt'
The text was updated successfully, but these errors were encountered:
GQN/dataset/convert2torch.py generate data files compressed by gzip.
But GQNDataset class expect uncompressed files.
The following error occurred when I executed GAN/train.py with the directory generated by convert2torch.py.
The text was updated successfully, but these errors were encountered: