Pytorch TypeError: eq () получил недопустимую комбинацию аргументов - PullRequest
0 голосов
/ 05 марта 2019
num_samples = 10
def predict(x):
    sampled_models = [guide(None, None) for _ in range(num_samples)]
    yhats = [model(x).data for model in sampled_models]
    mean = torch.mean(torch.stack(yhats), 0)
    return np.argmax(mean.numpy(), axis=1)

print('Prediction when network is forced to predict')
correct = 0
total = 0
for j, data in enumerate(test_loader):
    images, labels = data
    predicted = predict(images.view(-1,28*28))
    total += labels.size(0)
    correct += (predicted == labels).sum().item()
print("accuracy: %d %%" % (100 * correct / total))

Ошибка :

correct += (predicted == labels).sum().item() TypeError: 
eq() received an invalid combination of arguments - got (numpy.ndarray), but expected one of:  
* (Tensor other)
  didn't match because some of the arguments have invalid types: (!numpy.ndarray!)
* (Number other)
  didn't match because some of the arguments have invalid types: (!numpy.ndarray!)

*

1 Ответ

0 голосов
/ 05 марта 2019

Вы пытаетесь сравнить predicted и labels.Тем не менее, predicted - это np.array, а labels - torch.tensor, поэтому eq() (оператор ==) не может сравнивать их.
Замените np.argmax на torch.argmax:

 return torch.argmax(mean, dim=1)

И с тобой должно быть все в порядке.

...