Skip to content

Commit 9cf71d0

Browse files
committed
2 parents c67c1c9 + 1adfed4 commit 9cf71d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

03_net.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def model(X, w_h, w_o):
3838
for start, end in zip(range(0, len(trX), 128), range(128, len(trX)+1, 128)):
3939
sess.run(train_op, feed_dict={X: trX[start:end], Y: trY[start:end]})
4040
print(i, np.mean(np.argmax(teY, axis=1) ==
41-
sess.run(predict_op, feed_dict={X: teX, Y: teY})))
41+
sess.run(predict_op, feed_dict={X: teX})))

0 commit comments

Comments
 (0)