赞
踩
使用tensorflow时遇到以下警告信息,虽然不影响使用,但是看着不爽。具体解决办法如下。
警告信息:
- 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)])
报错原因:numpy的版本过高,降低numpy的版本即可,如numpy-1.16.0版本
解决方法:
pip install numpy==1.16.0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。