amanchadha / iSeeBetter

iSeeBetter: Spatio-Temporal Video Super Resolution using Recurrent-Generative Back-Projection Networks | Python3 | PyTorch | GANs | CNNs | ResNets | RNNs | Published in Springer Journal of Computational Visual Media, September 2020, Tsinghua University Press
https://arxiv.org/abs/2006.11161
MIT License
359 stars 68 forks source link

FileNotFoundError: [Errno 2] No such file or directory: './vimeo_septuplet/sequences/sep_trainlist.txt' #6

Closed ojasviyadav closed 4 years ago

ojasviyadav commented 4 years ago

I installed all the requirements and then also downloaded the Vimeo dataset using the script that you provided : 'DatasetFetcher.py'

After that I tried to train with the command "python3 iSeeBetterTrain.py", but I got this error:

$ python3 iSeeBetterTrain.py
[    INFO] ==> Loading datasets
Training samples chosen: sep_trainlist.txt
Traceback (most recent call last):
  File "iSeeBetterTrain.py", line 264, in <module>
    main()
  File "iSeeBetterTrain.py", line 206, in main
    args.other_dataset, args.patch_size, args.future_frame)
  File "/home/iSeeBetter/data.py", line 17, in get_training_set
    transform=transform())
  File "/home/iSeeBetter/dataset.py", line 168, in __init__
    alist = [line.rstrip() for line in open(join(image_dir,file_list))]
FileNotFoundError: [Errno 2] No such file or directory: './vimeo_septuplet/sequences/sep_trainlist.txt'

How can I debug this?

amanchadha commented 4 years ago

Hey!

Sorry for the delayed response. IIRC, sep_trainlist.txt should be available from the MIT Vimeo90K dataset. If you can't find it, you can always use the other testlists in the vimeo90K/ folder.

Hope this helps!