From 16cd5967d28417e38fd5c100f06d04f2dddfb905 Mon Sep 17 00:00:00 2001 From: Vadim Pushtaev Date: Sun, 5 Mar 2023 19:55:18 +0200 Subject: [PATCH] remove `steps` var It's not used. --- .../Part 5 - Inference and Validation (Solution).ipynb | 1 - 1 file changed, 1 deletion(-) diff --git a/intro-to-pytorch/Part 5 - Inference and Validation (Solution).ipynb b/intro-to-pytorch/Part 5 - Inference and Validation (Solution).ipynb index 33275ecc37..ad56e9684c 100644 --- a/intro-to-pytorch/Part 5 - Inference and Validation (Solution).ipynb +++ b/intro-to-pytorch/Part 5 - Inference and Validation (Solution).ipynb @@ -391,7 +391,6 @@ "optimizer = optim.Adam(model.parameters(), lr=0.003)\n", "\n", "epochs = 30\n", - "steps = 0\n", "\n", "train_losses, test_losses = [], []\n", "for e in range(epochs):\n",