From 81fdab94005fe8cc867d58f6645e97c6cd145a2d Mon Sep 17 00:00:00 2001 From: Deepankar Sharma <74599435+ideepankarsharma2003@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:18:17 +0530 Subject: [PATCH] Update Tutorial 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb --- ... 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tutorial 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb b/Tutorial 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb index 722546c..ccc3276 100644 --- a/Tutorial 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb +++ b/Tutorial 4- Creating ANN with Pytorch On Pima Diabetes Dataset.ipynb @@ -670,7 +670,7 @@ "epochs=500\n", "final_losses=[]\n", "for i in range(epochs):\n", - " i=i+1\n", + " # i=i+1 # don't need this , range function will take care of it\n", " y_pred=model.forward(X_train)\n", " loss=loss_function(y_pred,y_train)\n", " final_losses.append(loss)\n",