We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc5a93 commit acd2f67Copy full SHA for acd2f67
1 file changed
machine_learning/linear_regression_vectorized.py
@@ -65,7 +65,7 @@ def gradient_descent(
65
>>> import numpy as np
66
>>> features = np.array([[1, 1], [1, 2], [1, 3]])
67
>>> labels = np.array([[1], [2], [3]])
68
- >>> theta = gradient_descent(
+ >>> theta = gradient_descent(
69
... features, labels, alpha=0.01, iterations=1000 # doctest: +SKIP
70
... )
71
0 commit comments