我目前正在使用一个函数来使用numpy.histogram()
和numpy.histogram2d()
创建直方图。为了加快使用numba
的过程,我尝试使用@jit
装饰器在nonpython
模式下进行解释,但是numba
报告了一个错误,指出numpy.histogram()
是不受支持的功能。我的功能看起来像
def make_histograms(X, neurons, bins = 5):
xy = np.histogram2d(X, neurons, bins)[0]
x = np.histogram(X, bins)[0]
y = np.histogram(neurons, bins)[0]
在我的案子上是否还有其他使用numba的方法?任何帮助将非常感激。在此先感谢:)