From 1e6941e654d280a97b76be9edcf17d95334e09d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Thu, 18 Sep 2025 21:11:26 -0400 Subject: [PATCH] Updated the comments. --- mini-batch-sgd-logistic-regression-wdbc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-batch-sgd-logistic-regression-wdbc.py b/mini-batch-sgd-logistic-regression-wdbc.py index 3604a37..652f108 100644 --- a/mini-batch-sgd-logistic-regression-wdbc.py +++ b/mini-batch-sgd-logistic-regression-wdbc.py @@ -86,7 +86,7 @@ class LogisticRegression: x_batch = self.x[idx] y_batch = self.y[idx] - + # it returns X and Y batch values from a randomly permuted indices from start to end z = x_batch.dot(self.w) p = self.sigmoid(z)