Commit ccecbf2b authored by rusty1s's avatar rusty1s
Browse files

typo

parent 544ce0ac
...@@ -74,7 +74,7 @@ def test(model, data): ...@@ -74,7 +74,7 @@ def test(model, data):
return train_acc, val_acc, test_acc return train_acc, val_acc, test_acc
test(data, model) # Fill history. test(model, data) # Fill history.
best_val_acc = test_acc = 0 best_val_acc = test_acc = 0
for epoch in range(1, 201): for epoch in range(1, 201):
train(model, loader, optimizer) train(model, loader, optimizer)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment