No loop matching the specified signature and casting was found for ufunc gre

yolo系列训练需要 tensorboard库,

No loop matching the specified signature and casting was found for ufunc gre

报错代码:


# cum_counts = np.cumsum(np.greater(counts, 0, dtype=np.int32))

临时解决方法:

cum_counts = np.cumsum(np.greater(counts, 0))

你可能感兴趣的:(python基础,python,算法,人工智能)