python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I find multiple maximum indices of a torch tensor?
If I have a tensor which has multiple maximum values how can I get all the indices of maximum value. I have tried torch.argmax(tensor) but it only gives me the first index.
>>> a_list = [3,23...
H.Jamil
Votes: 0
Answers: 1
switch indices in 4th order tensor with python
I would like to replicate the following operation:
import numpy as np
a = np.eye(3)
A = np.einsum("ij,kl->ikjl", a,a)
I have the following:
def IndexPermutation(stringWithTensorIndices, ...

user17744436
Votes: 0
Answers: 1
How to Reverse Order of Rows in a Tensor
I'm trying to reverse the order of the rows in a tensor that I create. I have tried with tensorflow and pytorch. Only thing I have found is the torch.flip() method. This does not work as it reverses n...

LearnerHere
Votes: 0
Answers: 1