chainerx.vstack

chainerx.vstack(arrays)

Stack arrays in sequence vertically (row wise).

Parameters

arrays (sequence of ndarrays) – Arrays to be stacked.

Returns

Stacked array.

Return type

ndarray

Note

During backpropagation, this function propagates the gradient of the output array to the input arrays in arrays.

See also

numpy.vstack()