There was an error while loading. Please reload this page.
1 parent df47d3f commit 46e562cCopy full SHA for 46e562c
1 file changed
machine_learning/ordinary_least_squares_regression.py
@@ -16,7 +16,7 @@
16
import numpy as np
17
18
19
-def ols_regression(x, y):
+def ols_regression(x: np.ndarray, y: np.ndarray) -> tuple:
20
"""
21
Performs Ordinary Least Squares Regression (OLSR) on the given data.
22
0 commit comments