btahir / deoldify_and_edvr

combining DeOldify and EDVR
Apache License 2.0
40 stars 6 forks source link

workaround edvr merger with basicsr #5

Open robvanhooren opened 3 years ago

robvanhooren commented 3 years ago

to workaround the edvr merger with basicsr in August 2020, specify the pre-merge git branch, thusly:

!git clone -b old_version https://github.com/xinntao/EDVR

note, the old version is no longer actively maintained.

robvanhooren commented 3 years ago

further notes:

in deform_conv_cuda.cpp, change all occurrences of AT_CHECK to TORCH_CHECK

In deform_conv_cuda_kernel.cu, find all of the occurrences of data_col.data data_im.data data_mask.data data_offset.data grad_im.data grad_offset.data grad_mask.data and postfix the string "_ptr" to each. i.e. data_col.data becomes data_col.data_ptr

thenceforth, "combining everything" may continue...