TensorFlow函数教程:tf.keras.backend.repeat
2019-03-21 17:42 更新
tf.keras.backend.repeat函数
tf.keras.backend.repeat(
x,
n
)
定义在:tensorflow/python/keras/backend.py。
重复一个2D张量。
如果x具有shape(samples, dim),并且n是2,则输出将有shape(samples, 2, dim)。
参数:
- x:张量或变量。
- n:Python整数,要重复的次数。
返回:
返回张量。