From b3d6f41849f29dfe16657e36f99add7bb43635da Mon Sep 17 00:00:00 2001 From: Hyungyo Jung Date: Thu, 31 Jul 2025 14:18:46 +0900 Subject: [PATCH 1/2] Correct typo in default value within help --- mnist/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mnist/main.py b/mnist/main.py index 7d7899d9..1bee55c4 100644 --- a/mnist/main.py +++ b/mnist/main.py @@ -77,7 +77,7 @@ def main(): parser.add_argument('--test-batch-size', type=int, default=1000, metavar='N', help='input batch size for testing (default: 1000)') parser.add_argument('--epochs', type=int, default=14, metavar='N', - help='number of epochs to train (default: 10)') + help='number of epochs to train (default: 14)') parser.add_argument('--lr', type=float, default=1.0, metavar='LR', help='learning rate (default: 1.0)') parser.add_argument('--gamma', type=float, default=0.7, metavar='M', From 9a6a3fb9049b65cf16b14e14e84b104d441c81b1 Mon Sep 17 00:00:00 2001 From: Hyungyo Jung Date: Thu, 31 Jul 2025 14:22:20 +0900 Subject: [PATCH 2/2] added missing non-linearity --- mnist/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mnist/main.py b/mnist/main.py index 1bee55c4..166231af 100644 --- a/mnist/main.py +++ b/mnist/main.py @@ -22,6 +22,7 @@ def forward(self, x): x = self.conv1(x) x = F.relu(x) x = self.conv2(x) + x = F.relu(x) x = F.max_pool2d(x, 2) x = self.dropout1(x) x = torch.flatten(x, 1)