【Python】Error:Input 'y' of 'Add' Op has type float32 that does not match type int32 of argument 'x'.
生活随笔
收集整理的這篇文章主要介紹了
【Python】Error:Input 'y' of 'Add' Op has type float32 that does not match type int32 of argument 'x'.
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
學習Python,碰到數據類型不一致進行運算出現的問題,問題現象、原因、解決辦法如下。
1、問題代碼
# 引入 tensorflow 模塊 import tensorflow as tf# 創建兩個常量節點 node1 = tf.constant([2,5], dtype=tf.int32) node2 = tf.constant([1,2], dtype=tf.float32)#創建add節點,實現上面2個節點的加操作 adder = node1 + node2#打印3個節點 print(node1) print(node2) print(adder)# 打印 adder 運行后的結果 sess = tf.Session() print(sess.run(adder))問題現象:
2、問題原因
node1數據類型是int,但node2數據類型是float
3、解決辦法
# 引入 tensorflow 模塊 import tensorflow as tf# 創建兩個常量節點 node1 = tf.constant([2,5], dtype=tf.float32) node2 = tf.constant([1,2], dtype=tf.float32)#創建add節點,實現上面2個節點的加操作 adder = node1 + node2#打印3個節點 print(node1) print(node2) print(adder)# 打印 adder 運行后的結果 sess = tf.Session() print(sess.run(adder))正確運行結果:
總結
以上是生活随笔為你收集整理的【Python】Error:Input 'y' of 'Add' Op has type float32 that does not match type int32 of argument 'x'.的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: VS2013+opencv2.4.9配置
- 下一篇: Tensorflow初学者之搭建神经网络