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
sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})
InternalError: Blas SGEMM launch failed
2.0 Compatible Answer: Providing 2.0 Code for erko's answer for the benefit of the Community.
session = tf.compat.v1.Session() if 'session' in locals() and session is not None: print('Close interactive session') session.close()