Skip to content

Commit 46e562c

Browse files
author
Jeel Gajera
committed
fix: typos
1 parent df47d3f commit 46e562c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

machine_learning/ordinary_least_squares_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import numpy as np
1717

1818

19-
def ols_regression(x, y):
19+
def ols_regression(x: np.ndarray, y: np.ndarray) -> tuple:
2020
"""
2121
Performs Ordinary Least Squares Regression (OLSR) on the given data.
2222

0 commit comments

Comments
 (0)