Created
May 30, 2019 15:49
-
-
Save khuangaf/29368e1e47d50047084e9c350dea6777 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for epoch in range(1): | |
loss = train() | |
train_acc = evaluate(train_loader) | |
val_acc = evaluate(val_loader) | |
test_acc = evaluate(test_loader) | |
print('Epoch: {:03d}, Loss: {:.5f}, Train Auc: {:.5f}, Val Auc: {:.5f}, Test Auc: {:.5f}'. | |
format(epoch, loss, train_acc, val_acc, test_acc)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment