Updated the comments.

This commit is contained in:
Batuhan Berk Başoğlu 2025-09-25 15:22:07 -04:00
parent d516e979f9
commit de5d62ee8e
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo

View file

@ -10,7 +10,7 @@ class LinearRegression:
self.add_bias = add_bias # bias to prepend a column of ones (the intercept term)
self.w = None # weight/coefficient
self.mean = None # used for standardisation
self.std = None # standard deviationg
self.std = None # standard deviation
def prepare(self, x: pd.DataFrame) -> pd.DataFrame: