Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModuleNotFoundError: No module named 'coco #1595

Open
carolynenewman opened this issue Jun 28, 2019 · 2 comments
Open

ModuleNotFoundError: No module named 'coco #1595

carolynenewman opened this issue Jun 28, 2019 · 2 comments

Comments

@carolynenewman
Copy link

ModuleNotFoundError: No module named 'coco'

While running through the step-by-step inspect_weights.ipynb, I tried to run the very first notebook cell (just by copy and paste). I got the error:

ModuleNotFoundError Traceback (most recent call last)
in ()
1 sys.path.insert(0, '/~/Downloads/mask_rcnn_coco.h5')
----> 2 import coco
3 config = coco.CocoConfig()

ModuleNotFoundError: No module named 'coco'

I was hoping someone might be able to help me solve this problem because it has taken me forever to research, and I can't seem to figure it out! The link is: https://github.com/matterport/Mask_RCNN/blob/master/samples/coco/inspect_weights.ipynb

Thank you so much!

@itsrrworld
Copy link

itsrrworld commented Jul 9, 2019

You can follow these steps:

Install Visual studio build tools from this link
https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017

Then clone the cocoapi repository from github
git clone https://github.com/cocodataset/cocoapi.git

After cloning, go to the PythonAPI sub-directory in the same folder and run,
python setup.py install

If all these steps went well then you are good to go.

Or simply you can try:
!pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"

And then try to import
from pycocotools.coco import COCO

@alon1samuel
Copy link

You can follow these steps:

Install Visual studio build tools from this link
https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017

Then clone the cocoapi repository from github
git clone https://github.com/cocodataset/cocoapi.git

After cloning, go to the PythonAPI sub-directory in the same folder and run,
python setup.py install

If all these steps went well then you are good to go.

Or simply you can try:
!pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"

And then try to import
from pycocotools.coco import COCO

I did a similar thing as you suggested and then for import I did:
import pycocotools.coco as coco
Then it failed for me on - coco.CocoConfig()...
In this line :
class InferenceConfig(coco.CocoConfig):
I did as described here - link.

Regards, hope it helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants