Spaces:
Runtime error
Runtime error
""" | |
WiderFace evaluation code | |
author: wondervictor | |
mail: [email protected] | |
copyright@wondervictor | |
""" | |
from distutils.core import setup, Extension | |
from Cython.Build import cythonize | |
import numpy | |
package = Extension('bbox', ['box_overlaps.pyx'], include_dirs=[numpy.get_include()]) | |
setup(ext_modules=cythonize([package])) | |