xuannianz / EfficientDet

EfficientDet (Scalable and Efficient Object Detection) implementation in Keras and Tensorflow
Apache License 2.0
1.39k stars 395 forks source link

Error while loading .c cython file in anchors.py. Already ran setup.py still getting following. #231

Closed sanjaydeo96 closed 3 years ago

sanjaydeo96 commented 3 years ago

Screenshot from 2021-01-12 20-04-28

stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

Muhammad-Ahmad-Waseem commented 2 years ago

Hey @sanjaydeo96, I am facing the same issue. Were you able to solve it? If yes, can you guide me?

Muhammad-Ahmad-Waseem commented 2 years ago

Update:

If anyone is facing this issue, kindly add these lines before importing utils.compute_overlap in utils/anchors.py

import pyximport pyximport.install()

This solved the issue in my case.