I am trying to run the demo.ipynb file, however upon running:
class InferenceConfig(coco.CocoConfig):
# Set batch size to 1 since we'll be running inference on
# one image at a time. Batch size = GPU_COUNT * IMAGES_PER_GPU
GPU_COUNT = 1
IMAGES_PER_GPU = 1
I receive the following error: module 'coco' has no attribute 'CocoConfig'
However, I have imported the coco module. Hence I wonder how to fix this?
How did you solve the problem?
does somebody has solved this problem?
does any1 have an idea for this problem?
If somebody will read this in future and has not seen a solution -- it's here
Replace this:
import coco
With this:
from samples.coco import coco
Hi Daniil404,
When I run from samples.coco import coco, it throws me error like this "No module named samples".
Please help
Hi Daniil404,
When I run from samples.coco import coco, it throws me error like this "No module named samples".
Please help
did you fix this error
Most helpful comment
How did you solve the problem?