Open Cyntwikip opened 3 years ago
My implementation of the Linear Regression Machine Learning algorithm through Ordinary Least Squares (OLS) method.
Sample Usage:
ols = OLS() ols.fit(x.reshape(-1,1), y) ols.predict(x)
Description
My implementation of the Linear Regression Machine Learning algorithm through Ordinary Least Squares (OLS) method.
Sample Usage:
Checklist: