Skip to content

Commit 494bd2e

Browse files
authored
fixed spelling error
1 parent c246061 commit 494bd2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/linear_regression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def run_steep_gradient_descent(
6060
:param theta : Feature vector (weight's for our model)
6161
:param return : Updated Feature's, using
6262
curr_features - alpha_ * gradient(w.r.t. feature)
63-
;raises ValueError: If dimensions of inputs are inconsisten
63+
;raises ValueError: If dimensions of inputs are inconsistent
6464
"""
6565
n = len_data
6666
prod = np.dot(theta, data_x.transpose())

0 commit comments

Comments
 (0)