ValueerRor: Tylko jeden element tensory można przekonwertować na skalary Python

# Return a list of tensor shapes:
>> [t.size() for t in my_list_of_tensors]

# Returns a list of numpy arrays:
>> [t.numpy() for t in my_list_of_tensors]
Darkstar