We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c246061 commit 494bd2eCopy full SHA for 494bd2e
machine_learning/linear_regression.py
@@ -60,7 +60,7 @@ def run_steep_gradient_descent(
60
:param theta : Feature vector (weight's for our model)
61
:param return : Updated Feature's, using
62
curr_features - alpha_ * gradient(w.r.t. feature)
63
- ;raises ValueError: If dimensions of inputs are inconsisten
+ ;raises ValueError: If dimensions of inputs are inconsistent
64
"""
65
n = len_data
66
prod = np.dot(theta, data_x.transpose())
0 commit comments