Method Split
Split(Tensor, Tensor, int, int)
Calculates an output tensor by splitting the input tensor along a given axis between start and end.
Declaration
public virtual void Split(Tensor X, Tensor O, int axis, int start)
Parameters
Type | Name | Description |
---|---|---|
Tensor | X | The input tensor. |
Tensor | O | The output tensor to be computed and filled. |
int | axis | The axis along which to split the input tensor. |
int | start | The inclusive start value for the split. |