PyTorch : contiguous() ... torch.contiguous() ... print(x) x = x.view(-1,6) print(x) x = x[:,:4].contiguous() print(x) x=x.view(-1,2) ...
確定! 回上一頁