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
I suspect this would be a multithread-related issue (matplotlib is not thread-safe). The only workaround I have at this point is to simply ignore the exception.
The text was updated successfully, but these errors were encountered:
As matplotlib is not thread-safe, running plot ops in TensorFlow's
threadpool executor can throw an exception (e.g. KeyError from maxdict).
The easiest workaround is simply ignore such an error and simply
render a black screen.
The following KeyError might happen during the execution (e.g.
sess.run()
) of plot functions, where an exception is thrown outside:Detailed stacktrace (click to expand)
I suspect this would be a multithread-related issue (matplotlib is not thread-safe). The only workaround I have at this point is to simply ignore the exception.
The text was updated successfully, but these errors were encountered: