Element-wise absolute value: |x|
Element-wise clamp: min(max(x, minVal), maxVal)
Element-wise greater than or equal: x >= value → 1.0, else 0.0
Element-wise less than: x < value → 1.0, else 0.0
Extract a sub-tensor along dimension dim starting at start with the given length.
Zero-pad a 4D tensor N, C, H, W on the spatial dimensions.
Element-wise sign: -1 for negative, 0 for zero, +1 for positive. Non-differentiable.
Extract sliding windows of size size along dimension dim with stride step. Result has one extra dimension appended containing the window elements.