View source on GitHub |
Stack tensors in sequence horizontally (column wise).
tf.keras.ops.hstack(
xs
)
This is equivalent to concatenation along the first axis for 1-D tensors, and along the second axis for all other tensors.
Args | |
---|---|
xs
|
Sequence of tensors. |
Returns | |
---|---|
The tensor formed by stacking the given tensors. |