Updated the comments.
This commit is contained in:
parent
d516e979f9
commit
de5d62ee8e
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ class LinearRegression:
|
||||||
self.add_bias = add_bias # bias to prepend a column of ones (the intercept term)
|
self.add_bias = add_bias # bias to prepend a column of ones (the intercept term)
|
||||||
self.w = None # weight/coefficient
|
self.w = None # weight/coefficient
|
||||||
self.mean = None # used for standardisation
|
self.mean = None # used for standardisation
|
||||||
self.std = None # standard deviationg
|
self.std = None # standard deviation
|
||||||
|
|
||||||
|
|
||||||
def prepare(self, x: pd.DataFrame) -> pd.DataFrame:
|
def prepare(self, x: pd.DataFrame) -> pd.DataFrame:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue