We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325deda commit 765f391Copy full SHA for 765f391
machine_learning/gradient_descent.py
@@ -4,7 +4,7 @@
4
import numpy
5
6
# List of input, output pairs
7
-train_data = (((5, 2, 3), 15), ((6, 5, 9), 25),
+train_data = (((4, 2, 3), 15), ((6, 5, 9), 25),
8
((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41))
9
test_data = (((515, 22, 13), 555), ((61, 35, 49), 150))
10
parameter_vector = [2, 4, 1, 5]
0 commit comments