No module named cython_bbox
See original GitHub issueHi, I’m trying your code but when I run:
CUDA_VISIBLE_DEVICES=$GPU_ID python trainval_net.py --dataset pascal_voc --net vgg16 --cuda --bs $BATCH_SIZE
for the training I have this error:
from model.utils.cython_bbox import bbox_overlaps ImportError: No module named cython_bbox
I’ve just installed cython doing:
sudo pip install cython
Thanks in advance
Issue Analytics
- State:
- Created 6 years ago
- Comments:37 (19 by maintainers)
Top Results From Across the Web
No module named 'cython_bbox' · Issue #8 · ifzhang/FairMOT
ModuleNotFoundError: No module named 'cython_bbox'. Then I tried: pip install cython_bbox, However, also failed. Failed to build cython-bbox
Read more >cython-bbox - PyPI
In order to use it in standalone code snippets or small projects, I make it a pypi module. The `cython_bbox.pyx` is totally borrowed...
Read more >ModuleNotFoundError: No module named 'cython-bbox'
Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'cython-bbox' How to remove the Module.
Read more >ModuleNotFoundError: No module named 'utils.cython_bbox'
I'm using Windows 10 64 bit, Python 3.10.5, and as far as I can tell I've installed all dependencies including Visual Studio Code...
Read more >ModuleNotFoundError: No module named 'Cython' in Python
The Python "ModuleNotFoundError: No module named 'Cython'" occurs when we forget to install the Cython module before importing it or install ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
did you cd lib directory and run the command sh make.sh?
The minimal batch size should be 2. If you want make it work, you can reduce the image size, and use resnet instead of vgg16.
On Wed, Jan 10, 2018 at 18:35 Capuz93 notifications@github.com wrote: