Updated the comments.

This commit is contained in:
Batuhan Berk Başoğlu 2025-09-18 21:11:26 -04:00
parent 6508fcbbab
commit 1e6941e654
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo

View file

@ -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)