Skip to content

Commit 719a871

Browse files
authored
Merge pull request #39 from ghost/patch-2
remove unnecessary arguments
2 parents 2921009 + e845b56 commit 719a871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch04_classification/logistic_2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def sigmoid(x):
3636
break
3737
prev_err = err
3838

39-
w_val = sess.run(w, {X1: x1s, X2: x2s, Y: ys})
39+
w_val = sess.run(w)
4040

4141
x1_boundary, x2_boundary = [], []
4242
for x1_test in np.linspace(0, 10, 100):

0 commit comments

Comments
 (0)