導入tensorflow ,提示警告信息的解決辦法

當在程序中導入tensorflow出現下面錯誤

 

E:\Anaconda\lib\site-packages\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

解決辦法

1. 提高 h5py版本

pip install h5py

2.降低nupy版本

pip install numpy==1.13.3

3.在程序開頭添加

import os

os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章