【疑难杂症】解决-TensorFlow “FutureWarning: Conversion of the”

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/csdn0006/article/details/80809984

h5py/init.py:36: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.
from ._conv import register_converters as _register_converters

主要原因: numpy 1.14与 其他文件发生冲突。
解决方法:
tensorflow 1.18 要求numpy版本大于1.13.3
pip install numpy==1.13.3

猜你喜欢

转载自blog.csdn.net/csdn0006/article/details/80809984