dueToLife

Results 6 comments of dueToLife

I met this problem under pytorch 0.4.0, python 3.5.6, cuda 11.1, gcc 7.6 and solved it by changing environment to **pytorch 0.4.0, python 3.5.6, cuda 9.0, gcc 5.5.0**. After changing...

I used to meet this also. It's because your nvcc can't find THC.h and THCGeneric.h. see [this line](https://github.com/zllrunning/video-object-removal/blob/121f0b8359a534bae6afcd31fd0f486d10ee712a/inpainting/lib/channelnorm_package/make.sh#L2) and [this line](https://github.com/zllrunning/video-object-removal/blob/121f0b8359a534bae6afcd31fd0f486d10ee712a/inpainting/lib/channelnorm_package/make.sh#L9). Check if it is a true path of pytorch:...

And due to your high pytorch version,some api was deprecated,use their substitute in pytorch 1.0+

Hi,I successfully run this repo on GeForce 3090. I have met similar problem of unsupported gpu. I think env in requirement.txt may be out of date. SO I change env...

That‘s because `flags` is deprecated in new version kornia. Just modify /PIXIE/pixielib/utils/tensor_cropper.py, line 78, `flags=...` into `mode=...` like: `cropped_image = warp_affine( image, dst_trans_src[:, :2, :], (crop_size, crop_size), mode=interpolation, align_corners=align_corners)`

i didn't meet this. Error information means your GPU run out of memory. Make sure you have enough GPU memory. Good Luck!