We need separate process for training each separate NN. We can guarantee that single NN will not be updated concurrently.
Currently we are starting new process for every new request. We should instead use some form of inter-process communication, e.g. send signals and update shared data.
9 Updates makes communicator now only uses threads. The logger in the only one using a separate process (due to matplotlib) Perhaps we should also use different processes somewhere in the program for computationally expensive tasks.
Single process should be launched for the model.
We need separate process for training each separate NN. We can guarantee that single NN will not be updated concurrently.
Currently we are starting new process for every new request. We should instead use some form of inter-process communication, e.g. send signals and update shared data.
Doing that should also take care of #7