From 21cc1b1ca00677a560ce5c2859f0e4ce8dbc9361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Thu, 18 Sep 2025 21:13:14 -0400 Subject: [PATCH] Updated a typo in comments. --- mini-batch-sgd-logistic-regression-wdbc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mini-batch-sgd-logistic-regression-wdbc.py b/mini-batch-sgd-logistic-regression-wdbc.py index 652f108..f41da8b 100644 --- a/mini-batch-sgd-logistic-regression-wdbc.py +++ b/mini-batch-sgd-logistic-regression-wdbc.py @@ -7,7 +7,6 @@ class LogisticRegression: Constructor for the logistic regression with gradient descent. It uses learning rate, iteration number, tolerance and verbose. It also initializes the weight, loss, x, y, mean and std. ''' - def __init__(self, learning_rate: float, n_iter: int, batch_size: int, tolerance: float, verbose: bool) -> None: self.lr = learning_rate self.n_iter = n_iter