Skip to content

Commit 765f391

Browse files
committed
test
1 parent 325deda commit 765f391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/gradient_descent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import numpy
55

66
# List of input, output pairs
7-
train_data = (((5, 2, 3), 15), ((6, 5, 9), 25),
7+
train_data = (((4, 2, 3), 15), ((6, 5, 9), 25),
88
((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41))
99
test_data = (((515, 22, 13), 555), ((61, 35, 49), 150))
1010
parameter_vector = [2, 4, 1, 5]

0 commit comments

Comments
 (0)