解决python调用TensorFlow时出现FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecate
最近因為要做一個基于深度學習的人臉識別項目,要用到TensorFlow,但是下載完成后后發現import 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_quint8 = np.dtype([("quint8", np.uint8, 1)])的錯誤,如圖
百度了許多,很多說是numpy的版本不對,換了numpy的版本就行了,但是我換了好幾個版本都沒用,仍然報錯,最后發現,可以在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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: TensorFlow报错FutureWa
- 下一篇: PyCharm设置字体大小(亲测)