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
As sub-processes fork the random generator from their parent process, it might happen that different sub processes obtain the same sequence of random numbers in different processes. Depending on the backend it might be an issue. In general it would be advantageous to make it explicit, e.g.
As sub-processes fork the random generator from their parent process, it might happen that different sub processes obtain the same sequence of random numbers in different processes. Depending on the backend it might be an issue. In general it would be advantageous to make it explicit, e.g.
or even better, to pass different seeds from the parent process to the forked child processes. The latter would give us reproducability, see also (https://joblib.readthedocs.io/en/latest/auto_examples/parallel_random_state.html)
The text was updated successfully, but these errors were encountered: