Functional interface to the Concatenate
layer.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.compat.v1.keras.layers.concatenate
, `tf.compat.v2.keras.layers.concatenate`
tf.keras.layers.concatenate(
inputs, axis=-1, **kwargs
)
Arguments | |
---|---|
inputs
|
A list of input tensors (at least 2). |
axis
|
Concatenation axis. |
**kwargs
|
Standard layer keyword arguments. |
Returns | |
---|---|
A tensor, the concatenation of the inputs alongside axis axis .
|