How to fix errors using multiprocessing with stable_baselines3
Trying to initialize multiple stable_baselines3 models, each in their own process The following code hangs when using Pool to initialize models. If the initialize_model(1) line is commented, the code runs to completion What is the issue with running initialize_model(1) before multiprocessing, and is there a way to fix it? (I am aware that stable_baselines3 has […]