Emanuel Isaac Afanador
Results
1
comments of
Emanuel Isaac Afanador
Just change line 63 in `run.py` from: ``` input_img = torch.randn(target_img.shape).to(gpu_id) ``` to: ``` input_img = torch.randn(target_img.shape).contiguous().to(gpu_id) ``` this solution works for me :)