TensorFlow莫烦 placehoder (三)
生活随笔
收集整理的這篇文章主要介紹了
TensorFlow莫烦 placehoder (三)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
placeholder 傳入值要用字典
并且tf.mul、tf.sub 和 tf.neg 被棄用,現(xiàn)在使用的是 tf.multiply、tf.subtract 和 tf.negative.
import tensorflow as tfinput1=tf.placeholder(tf.float32)input2=tf.placeholder(tf.float32)output = tf.multiply(input1, input2)init = tf.initialize_all_variables() sess = tf.Session() sess.run(init) print(sess.run(output,feed_dict={input1:[7.0],input2:[2.0]}))總結(jié)
以上是生活随笔為你收集整理的TensorFlow莫烦 placehoder (三)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: TensorFlow 莫烦视频学习笔记例
- 下一篇: TensorFlow 最小二乘法拟合