faster_rcnn_pytorch
faster_rcnn_pytorch copied to clipboard
ModuleNotFoundError: No module named 'utils'
I'm trying to run this code only with CPU, so I removed all the .cuda() codes.
Then, when I executed demo.py, ModuleNotFoundError: No module named 'utils' this error happens.
When I checked the python files, most of them had errors importing modules from same directory or sub directories.
I can't figure out why. Any help would be appreciated.
in code, replace ' from utils ...... ' with 'from faster_rcnn.utils .....'