Is Tensorflow Loading Twice In Pycharm?
I'm using flask as the web server running keras with tensor flow backend. Every time I restart it, it shows up like this: Does this mean that Tensorflow is loading twice? Or is i
Solution 1:
I ran into the same error. In my case it was because predict
was called in a different thread than the one in which load_model
was called. Moved them to the same thread the the problem was gone.
Post a Comment for "Is Tensorflow Loading Twice In Pycharm?"