DeprecationWarning: numpy.core.umath_tests

/usr/local/lib/python2.7/dist-packages/sklearn/ensemble/weight_boosting.py:29: 
DeprecationWarning: numpy.core.umath_tests is an internal NumPy module and should not be imported. 
It will be removed in a future NumPy release.
  from numpy.core.umath_tests import inner1d

这不是一个错误,而是一个弃用警告。

警告的位置在文件 /usr/local/lib/python2.7/dist-packages/sklearn/ensemble/weight_boosting.py 的第 29 行。
导入的 from numpy.core.umath_tests import inner1d ,这个 Numpy 模块在新版本的 Numpy 包中将被移除。

更多信息:
https://stackoverflow.com/questions/51986414/deprecationwarning-numpy-core-umath-tests

猜你喜欢

转载自blog.csdn.net/qq_16488989/article/details/109160167
今日推荐