1 问题描述
Tensorflow
运行一个脚本,抛出了如上十多条警告。
site-packages/tensorflow/python/framework/dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_qint8 = np.dtype([("qint8", np.int8, 1)])
2 原因分析
numpy
的版本问题。
3 解决方案
将numpy
的版本更新到1.16.4即可。
激活环境后输入:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com numpy==1.16.4