为了账号安全,请及时绑定邮箱和手机立即绑定

我们可以在feed_dict中将tf.variable馈送到tf.placeholder吗?

我们可以在feed_dict中将tf.variable馈送到tf.placeholder吗?

回首忆惘然 2021-05-20 18:14:14
我想用张量流做一个简单的任务。但是我遇到一个错误import numpy as npimport pandas as pdfv = tf.Variable(10.0,name="first_var")sv = tf.Variable(20.0,np.random.randn(),name="second_var")fvp = tf.placeholder("float32",name="first_fvp",shape=[])svp = tf.placeholder("float32",name="second_svp",shape=[])result = tf.Variable(0.0,name="output")result =  np.multiply(fvp,svp)sess = tf.Session()sess.run(tf.global_variables_initializer())print(sess.run(result,feed_dict={fvp:fv,svp:sv}))错误=设置具有序列的数组元素。在这种情况下,我遇到了错误如果我用print(sess.run(result,feed_dict={fvp:5.0,svp:10.0}))我得到50.0的输出
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 118 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信