I\'m using tensorflow to preprocess some large images. I was having a problem where the memory was rapidly collapsing. I turned to use multiprocessing in python so the memor
I don't think you can share "state" as in the tf.Session()
between processes like that.
I would think that each process needed it's own session.
All you need is distributed tensorflow.