Are multiple GPUs available?
DaehanKim-Korea opened this issue · 3 comments
DaehanKim-Korea commented
Are multiple GPUs available?
YapengTian commented
Yes, we can use multiple gpus during training (--gpu 0,1,3,...). For evaluation, we only use one gpu.
sljlp commented
how to evaluate an image with a large size, such as 1920x1080 or 1280x720?
YapengTian commented
One commonly used way is to split the full images into image patches and then compose the generate patches to full images again. https://github.com/YapengTian/TDAN-VSR-CVPR-2020/blob/master/solver.py pls look at the chop_forward function.