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
make generate
python utils/data.py
Traceback (most recent call last):
File "utils/data.py", line 20, in <module>
from .image import read_image, read_image_and_resize
ModuleNotFoundError: No module named '__main__.image'; '__main__' is not a package
Makefile:22: recipe for target 'generate' failed
make: *** [generate] Error 1
Which I "fixed" (?) by replacing
from .image import read_image, read_image_and_resize
by
from image import read_image, read_image_and_resize
in utils/data.py. I'm using python 3.6.7.
Thanks for sharing the code!
The text was updated successfully, but these errors were encountered:
I get an error
Which I "fixed" (?) by replacing
by
in utils/data.py. I'm using python 3.6.7.
Thanks for sharing the code!
The text was updated successfully, but these errors were encountered: