如何在Tensorflow中检查张量是否为空

时间:2018-05-25 12:31:36

标签: tensorflow tensor

我的部分代码如下:

class_label = tf.placeholder(tf.float32, [None], name="condition_checking")
row_index = tf.where(class_label > 0)

我想检查row_index为空时写下以下内容

loss_f_G_filtered = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(
    logits=y1_filterred, labels=y__filtered), name="filtered_reg")

if row_index == []:
  loss_f_G_filtered = tf.constant(0, tf.float32)

但是,我不知道如何检查row_index是否为空张量。

3 个答案:

答案 0 :(得分:7)

is_empty = tf.equal(tf.size(row_index), 0)

答案 1 :(得分:1)

您可以使用tf.cond

idx0 = tf.shape(row_index)[0]
loss_f_G_filtered = tf.cond(idx0 == 0,
                            lambda: tf.constant(0, tf.float32),
                            lambda: ...another function...)

答案 2 :(得分:0)

    loss_f_G = 

tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=y1_filterred, labels=y__filtered), name = "filtered_reg")
    idx0 = tf.shape(row_index)[0]
    loss_f_G_filtered = tf.cond(tf.cast(idx0 == 0, tf.bool), lambda: tf.constant(0, tf.float32), lambda:loss_f_G)

问题是即使row_index = [],idx0 == 0也不会成立。

enter image description here