You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tested the image inpainting code by running as README suggests: python3 tools/video_inpaint.py --frame_dir ./demo/frames --MASK_ROOT ./demo/masks --img_size 512 832 --FlowNet2 --DFC --ResNet101 --Propagation
I met this error: ImportError: No module named 'models.FlowNet2_Models.resample2d_package._ext.resample2d._resample2d
How to solve this problem?
The text was updated successfully, but these errors were encountered:
This issue is still relevant for me root@220933f32d51:/inpainting# python3 tools/video_inpaint.py --frame_dir ./demo/frames --MASK_ROOT ./demo/masks --img_size 512 832 --FlowNet2 --DFC --ResNet101 --Propagation Traceback (most recent call last): File "tools/video_inpaint.py", line 7, in <module> from tools.frame_inpaint import DeepFillv1 File "/inpainting/tools/frame_inpaint.py", line 7, in <module> from models import DeepFill File "/inpainting/models/__init__.py", line 1, in <module> from .FlowNet2_Models.FlowNet2 import * File "/inpainting/models/FlowNet2_Models/FlowNet2.py", line 8, in <module> from .resample2d_package.modules.resample2d import Resample2d File "/inpainting/models/FlowNet2_Models/resample2d_package/modules/resample2d.py", line 3, in <module> from ..functions.resample2d import Resample2dFunction File "/inpainting/models/FlowNet2_Models/resample2d_package/functions/resample2d.py", line 3, in <module> from .._ext import resample2d File "/inpainting/models/FlowNet2_Models/resample2d_package/_ext/resample2d/__init__.py", line 3, in <module> from ._resample2d import lib as _lib, ffi as _ffi ImportError: No module named 'models.FlowNet2_Models.resample2d_package._ext.resample2d._resample2d'
When I tested the image inpainting code by running as README suggests:
python3 tools/video_inpaint.py --frame_dir ./demo/frames --MASK_ROOT ./demo/masks --img_size 512 832 --FlowNet2 --DFC --ResNet101 --Propagation
I met this error:
ImportError: No module named 'models.FlowNet2_Models.resample2d_package._ext.resample2d._resample2d
How to solve this problem?
The text was updated successfully, but these errors were encountered: