日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

tensorflow调用问题解决

發布時間:2025/3/15 编程问答 14 豆豆
生活随笔 收集整理的這篇文章主要介紹了 tensorflow调用问题解决 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

做特征點匹配項目的時候用到了tensorflow,但是在導入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’.

我們根據終端輸出的提示,打開dtypes.py的523-527、532行代碼,在未來的numpy版本中當前的語句可能會被誤解(我安裝的是tensorflow12.0版本),于是我們將對應的語句修改,也就是
分別將_np_qint8 = np.dtype([(“qint8”,np.uint8, 1)])
修改為:
_np_qint8 = np.dtype([(“qint8”, np.int8, (1,))])

#修改之后的代碼 _np_qint8 = np.dtype([("qint8", np.int8, (1,))]) _np_quint8 = np.dtype([("quint8", np.uint8, (1,))]) _np_qint16 = np.dtype([("qint16", np.int16, (1,))]) _np_quint16 = np.dtype([("quint16", np.uint16, (1,))]) _np_qint32 = np.dtype([("qint32", np.int32, (1,))])# _np_bfloat16 is defined by a module import.# Custom struct dtype for directly-fed ResourceHandles of supported type(s). np_resource = np.dtype([("resource", np.ubyte, (1,))])

寫一段簡單的代碼測試一下是否成功解決這個bug,代碼如下:

#導入tensorflow模塊 import tensorflow as tf#定義一個常量字符串hello hello=tf.constant('Hello, it is my first tensorflow code!')#定義Session,執行計算圖 sess=tf.Session() print(sess.run(hello))

終端輸出為:

b'Hello, it is my first tensorflow code!'

測試成功!

總結

以上是生活随笔為你收集整理的tensorflow调用问题解决的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。