tf.keras.backend.concatenate

tf.keras.backend.concatenate(
    tensors,
    axis=-1
)

Defined in tensorflow/python/keras/backend.py.

Concatenates a list of tensors alongside the specified axis.

Arguments:

  • tensors: list of tensors to concatenate.
  • axis: concatenation axis.

Returns:

A tensor.