remove summary

This commit is contained in:
William Falcon
2019-12-11 06:50:56 -08:00
parent 28b68503bc
commit 486a841dab
+1 -1
View File
@@ -159,7 +159,7 @@ def run_prediction(dataloader, trained_model, dp=False, min_acc=0.50):
acc = torch.mean(acc).item()
else:
y_hat = trained_model(x, 0)
y_hat = trained_model(x)
# acc
labels_hat = torch.argmax(y_hat, dim=1)