如何检查张量成员资格?

时间:2018-11-17 03:19:29

标签: python tensorflow

我想检查数组张量a中是否存在标量张量b

  1. 亲笔签名会支持吗? (我无法从文档中得知:link

    @autograph.convert()
    def my_func(a):  # a is a tf.constant uint16 scalar                
        b = tf.constant([1, 2, 4, 5, 6])
        return a in b
    
  2. 如果签名不支持,使用TensorFlow函数的推荐方式是什么?是否使用tf.sets.set_intersection

  3. 如果a是数组而不是标量,方法会改变吗?

0 个答案:

没有答案