作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有一个第一个维度是动态的二维张量,我如何在每一行的末尾附加一个标量值?
因此,如果我将 [[1,2], [3,4]] 提供给张量,我想使其成为 [[1,2,5], [3,4,5]]。
示例(不起作用):
a = tf.placeholder(tf.int32, shape=[None, 2])
b = tf.concat([tf.constant(5), a], axis=1)
最佳答案
IMO 填充是这里最简单的方法:
a = tf.placeholder(tf.int32, shape=[None, 2])
b = tf.pad(a, [[0, 0], [0, 1]], constant_values=5)
将附加一个
5
-列。
tf.pad
。
关于python - Tensorflow (Python) : How to append a scalar to each row in a tensor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51166368/
我是一名优秀的程序员,十分优秀!