Skip to content

Commit

Permalink
down into cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfeiBai committed Apr 24, 2024
1 parent e25e9d2 commit 58359ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_test_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ def test():
test_loss /= 20
test_losses.append(test_loss)
print('\nTest set: Avg. loss: {:.4f}, Accuracy: {}/{} ({:.0f}%)\n'.format(
test_loss, correct, len(test_loader.dataset),
100. * correct / len(test_loader.dataset)))
test_loss, correct, 20,
100. * correct / 20))

# run test model
test()
Expand Down

0 comments on commit 58359ca

Please sign in to comment.