xinntao / EDVR

Winning Solution in NTIRE19 Challenges on Video Restoration and Enhancement (CVPR19 Workshops) - Video Restoration with Enhanced Deformable Convolutional Networks. EDVR has been merged into BasicSR and this repo is a mirror of BasicSR.
https://github.com/xinntao/BasicSR
1.49k stars 318 forks source link

Question about the parameter of the dataset_ratio in the train. py #51

Open superlxt opened 5 years ago

superlxt commented 5 years ago

Hello, thanks for your great work, we found that in the train. py , you use dataset_radio to enlarge the size of epoch, for distributed train, my question is that why you enlarge the dataset? what's the function of the dataset_radio

xinntao commented 5 years ago

For faster training. After each epoch, it costs some time to restart the data loaders and in some environments, it will cost too much time. So we enlarge the dataset to decrease the epoch numbers. It will not influence the training.