作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
有没有像 itertools.product 这样简单的方法在 Tensorflow 中做笛卡尔积?我想获得两个张量元素的组合(a
和 b
),在 Python 中可以通过 itertools 作为 list(product(a, b))
。我正在 Tensorflow 中寻找替代方案。
最佳答案
我在这里假设 a
和 b
都是一维张量。
要获得两者的笛卡尔积,我会结合使用 tf.expand_dims
和 tf.tile
:
a = tf.constant([1,2,3])
b = tf.constant([4,5,6,7])
tile_a = tf.tile(tf.expand_dims(a, 1), [1, tf.shape(b)[0]])
tile_a = tf.expand_dims(tile_a, 2)
tile_b = tf.tile(tf.expand_dims(b, 0), [tf.shape(a)[0], 1])
tile_b = tf.expand_dims(tile_b, 2)
cartesian_product = tf.concat([tile_a, tile_b], axis=2)
cart = tf.Session().run(cartesian_product)
print(cart.shape)
print(cart)
你最终得到一个 len(a) * len(b) * 2 张量,其中 a
和 b
的元素的每个组合都在最后一个维度中表示.
关于python - Tensorflow 中的笛卡尔积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47132665/
我是一名优秀的程序员,十分优秀!