I'm importing files from the following folder inside a python code:
Mask_RCNN
-mrcnn
-config.py
-model.py
-__init__.py
-utils.py
-visualize.py
I'm using the following imports:
These work ok: from Mask_RCNN.mrcnn.config import Config from Mask_RCNN. mrcnn import utils
These give me error:
from Mask_RCNN.mrcnn import visualize
import mrcnn.model as modellib
Error:
ImportError: No module named 'mrcnn'
How to import these properly?