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",