When I run sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})
I get InternalError: Blas SGEMM launch failed
. Here is the full error and st
Old question, but may help others.
Try to close interactive sessions active in other processes (if IPython Notebook - just restart kernels). This helped me!
Additionally, I use this code to close local sessions in this kernel during experiments:
if 'session' in locals() and session is not None:
print('Close interactive session')
session.close()