a = torch.linspace(1, 12, steps=12).view(3, 4); print(a); b = torch.index_select(a, 0, torch.tensor([0, 2])); print(b) ...
確定! 回上一頁