I would like to train multiple one class svms in different threads. Does anybody know if scikits.learn.svm releases the GIL? I did not find any answer on google. Thanks
|
feedback
|
|
No, scikit-learn does not play any tricks with the GIL. Instead, it uses joblib for all its parallelism, which spawns multiple processes to do its work. You can achieve what you want with a custom joblib If you intend to train multiple classifiers on the same dataset with different settings to find the optimal one, consider using the | |||||||||
feedback
|