Tensor Pytorch Argmax

values, indices = tensor.max(0)
values, indices = torch.max(tensor, 0)
Awful Ape