remove summary

This commit is contained in:
William Falcon
2019-12-11 06:50:44 -08:00
parent 23f1b98c0e
commit 28b68503bc
+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)
y_hat = trained_model(x, 0)
# acc
labels_hat = torch.argmax(y_hat, dim=1)