qianguih / voxelnet

This is an unofficial inplementation of VoxelNet in TensorFlow.
645 stars 241 forks source link

ModuleNotFoundError: No module named 'utils.box_overlaps' #83

Open Huizhaoaaaa opened 4 years ago

Huizhaoaaaa commented 4 years ago

When I run the train.py, the following error appears: Traceback (most recent call last):

File "E:\voxelnet-master\train.py", line 14, in from model import RPN3D

File "E:\voxelnet-master\model__init__.py", line 12, in from model.model import *

File "E:\voxelnet-master\model\model.py", line 12, in from utils import *

File "E:\voxelnet-master\utils__init__.py", line 10, in from utils.box_overlaps import *

ModuleNotFoundError: No module named 'utils.box_overlaps' the utils folder contains "box_overlaps.c" and "box_overlaps.pyx" image

kasai2210 commented 3 years ago

This model isn't working correctly in Windows, try using Linux or WSL2.

miaozujia commented 1 year ago

i have the same question, there is box_overlaps.c instead of box_overlaps.py, what can i do?

cui19981127 commented 1 year ago

You can add at the beginning of the code import pyximport pyximport.install()