Skip to content

Commit e845b56

Browse files
authored
remove unnecessary arguments
1 parent 4461953 commit e845b56

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)