微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python – tensorflow:检查标量布尔张量是否为True

我想使用占位符控制函数的执行,但不断收到错误“不允许使用tf.Tensor作为 Python bool”.以下是产生此错误代码

import tensorflow as tf
def foo(c):
  if c:
    print('This is true')
    #heavy code here
    return 10
  else:
    print('This is false')
    #different code here
    return 0

a = tf.placeholder(tf.bool)  #placeholder for a single boolean value
b = foo(a)
sess = tf.InteractiveSession()
res = sess.run(b,Feed_dict = {a: True})
sess.close()

我改变了,如果c,如果c不是没有运气没有.如何通过打开和关闭占位符a来控制foo?

更新:当@nessuno和@nemo指出时,我们必须使用tf.cond而不是if..else.我的问题的答案是重新设计我的功能,如下所示:

import tensorflow as tf
def foo(c):
  return tf.cond(c,func1,func2)

a = tf.placeholder(tf.bool)  #placeholder for a single boolean value
b = foo(a)
sess = tf.InteractiveSession()
res = sess.run(b,Feed_dict = {a: True})
sess.close()

解决方法

您必须使用 tf.cond在图表中定义条件操作,并因此更改张量的流程.

import tensorflow as tf

a = tf.placeholder(tf.bool)  #placeholder for a single boolean value
b = tf.cond(tf.equal(a,tf.constant(True)),lambda: tf.constant(10),lambda: tf.constant(0))
sess = tf.InteractiveSession()
res = sess.run(b,Feed_dict = {a: True})
sess.close()
print(res)

10

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐