The tensor to stride slice.
The coordinates to start the slice from.
Optional strides: number[]Optional beginMask: numberOptional endMask: numberOptional ellipsisMask: numberOptional newAxisMask: numberOptional shrinkAxisMask: numberGenerated using TypeDoc
Extracts a strided slice of a tensor.
Roughly speaking, this op extracts a slice of size (end-begin)/stride from the given input tensor (x). Starting at the location specified by begin the slice continues by adding stride to the index until all dimensions are not less than end. Note that a stride can be negative, which causes a reverse slice.