转载python调用TensorFlow时出现FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecate

本文是转载,转载注明出处:https://blog.csdn.net/bigdream123/article/details/99467316

因为opencv的原因不得已更新numpy至最新版,但这引发了一个新的问题:

python调用TensorFlow时出现FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecate

感谢 @涵小呆 提供的方法

可以在pycharm中使用Import tensorflow,然后将点进出现的警告,进入dtype.py,修改对应行的代码,把np.dtype([("quint8", np.uint8, 1)])修改为np.dtype([("quint8", np.uint8, (1,))])就完美解决了

 

 


————————————————
版权声明:本文为CSDN博主「涵小呆」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/bigdream123/article/details/99467316

 

 

 

 

你可能感兴趣的:(转载python调用TensorFlow时出现FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecate)