numpy-ols Ordinary Least Squares in just NumPy. Follows the Sklearn API. Usage: from ols import OLS clf = OLS(fit_intercept=True) clf.fit(X,y) clf.predict(X_test) clf.summary(feature_names)