lyndonzheng / Synthetic2Realistic

[ECCV 2018]: T2Net: Synthetic-to-Realistic Translation for Depth Estimation Tasks
180 stars 42 forks source link

Training only with kitti and virtual kitti #23

Closed Sudonuma closed 5 years ago

Sudonuma commented 5 years ago

Hello!

I am trying to train only using KITTI and VKITTI, however whenever I try the train command, I get this error,

" FileNotFoundError: [Errno 2] No such file or directory: '/data/dataset/Image2Depth_SUN_NYU/trainC.txt' "

I actually don't need the outdoor dataset, can you please explain how do I train without the outdoor dataset. I am new to research and I still find difficulty to understand some stuff. Thank you!

lyndonzheng commented 5 years ago

@Sudonuma During the training, "trainC.txt" only be used for validation, rather than updating the parameters. If you want to train without this data, you need to modify the code of dataloader.py and T2model.py to remove the lab_target.

Sudonuma commented 5 years ago

Hello, Thank you for your response, if you don't mind explaining there is something I cannot understand, if we are training with kitti, why do we need the indoor dataset here?

Besides if I don't delete the lab_target how should I do proceed ? Prepare an NYU data just like we did with Kitti?

lyndonzheng commented 5 years ago

Training with KITTI, we only need the vkitti-image, vkitti-depth, kitti-image, kitti-depth(just for validation). The indoor dataset will not be used for training the kitti depth predication task.