Open anthony-chaudhary opened 7 years ago
Hello :)
This is a really cool idea and implementation!
I bumped into what appears to be a small bug with python 3.6 on Ubuntu 16.04.
While running python evaluate.py this error is returned: ModuleNotFoundError: No module named 'stitch_wrapper'
python evaluate.py
ModuleNotFoundError: No module named 'stitch_wrapper'
The fix below works for me. Not sure if it's a general issue or not. Figured I would post here in case others run into it:
cd submodules/utils && make
stitch_wrapper.pyx
stitch_wrapper
train_utils
utils.
from utils.stitch_wrapper import stitch_rects
Seams to be a python 3.6 / 2.7 compatibility error. If there is a way to make it work under both versions, feel free to create a pull request.
Hello :)
This is a really cool idea and implementation!
I bumped into what appears to be a small bug with python 3.6 on Ubuntu 16.04.
While running
python evaluate.py
this error is returned:ModuleNotFoundError: No module named 'stitch_wrapper'
The fix below works for me. Not sure if it's a general issue or not. Figured I would post here in case others run into it:
cd submodules/utils && make
as directed in readme, if you haven't alreadystitch_wrapper.pyx
tostitch_wrapper
train_utils
to addutils.
ie ->
from utils.stitch_wrapper import stitch_rects