Merged the branch.

This commit is contained in:
Batuhan Berk Başoğlu 2025-09-22 18:10:25 -04:00
parent 6922a8e6cb
commit ccf7e878f9
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo

View file

@ -34,7 +34,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 deviation
self.std = None # standard deviationg
def prepare(self, x: pd.DataFrame) -> pd.DataFrame: