Skip to content

Commit

Permalink
[test] reduce batch size for mnist training (#984)
Browse files Browse the repository at this point in the history
The `test_mnist_training` is failing on n300 machines, due to a bug in
ttnn. Reduce the batch size so that the test can pass.

Filed an issue in tt-metal:
tenstorrent/tt-metal#16348
  • Loading branch information
pilkicTT authored Dec 30, 2024
1 parent ece7caa commit 1c0421e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/test/mlir/mnist/training/test_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_mnist_training():

# Set training hyperparameters
num_epochs = 3
batch_size = 2048
batch_size = 1024
learning_rate = 0.001

# Load dataset
Expand Down

0 comments on commit 1c0421e

Please sign in to comment.