Successfully resolved Error: No module named 'keras_retinanet.utils.compute_overlap'

When calling retinanet-train, the following problem occurs:
insert image description here
This is because when the setup.py file is installed, the imported compute_overlap file needs to be converted, because its format ends with .pyx.
So, do the following:
python setup.py build_ext --inplace

Related Posts