torch.narrow¶
- torch.narrow(input, dim, start, length) Tensor¶
返回 input 張量的一個窄化(narrowed)版本的新張量。將維度
dim從start窄化到start + length。返回的張量和input張量共享同一底層儲存。- 引數
示例
>>> x = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) >>> torch.narrow(x, 0, 0, 2) tensor([[ 1, 2, 3], [ 4, 5, 6]]) >>> torch.narrow(x, 1, 1, 2) tensor([[ 2, 3], [ 5, 6], [ 8, 9]]) >>> torch.narrow(x, -1, torch.tensor(-1), 1) tensor([[3], [6], [9]])