I can not understand why does it need "_" before another execution within a loop. Here is the code:
for i in range(len(X_train)):
feed = {X: [X_train[i]],y: [y_train[i]]}
_, loss = sess.run([train_op, cost],feed_dict=feed)
I had no problem in running the code, but I have no idea about why it had to place a "_" before the next statement. Anyone knows?