Skip to content

Commit 2da4728

Browse files
committed
update
2 parents 93c1efb + b8b341c commit 2da4728

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

machine_learning/linear_regression.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ def sum_of_square_error(data_x, data_y, len_data, theta):
7373
return float("inf")
7474

7575

76-
7776
def run_linear_regression(data_x, data_y):
7877
"""Implement Linear regression over the dataset
7978
:param data_x : contains our dataset
@@ -111,7 +110,6 @@ def mean_absolute_error(predicted_y, original_y):
111110
return float("inf")
112111

113112

114-
115113
def main():
116114
"""Driver function."""
117115
data = collect_dataset()

0 commit comments

Comments
 (0)