我想检查数组张量a
中是否存在标量张量b
亲笔签名会支持吗? (我无法从文档中得知: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
如果签名不支持,使用TensorFlow函数的推荐方式是什么?是否使用tf.sets.set_intersection
?
如果a
是数组而不是标量,方法会改变吗?