You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original implementation seems to propagate for two(three) times, leading to large amount of time waste. Use sess.run([optimizer,check_op,loss,accuracy], feed_dict={imgs: batch_xs, target: batch_ys})
It saves nearly half of training time.
The text was updated successfully, but these errors were encountered:
Bilinear-CNN-TensorFlow/core/bcnn_finetuning.py
Line 391 in cc2df09
Original implementation seems to propagate for two(three) times, leading to large amount of time waste. Use
sess.run([optimizer,check_op,loss,accuracy], feed_dict={imgs: batch_xs, target: batch_ys})
It saves nearly half of training time.
The text was updated successfully, but these errors were encountered: