The "thing" under the hood is the library joblib
, which powers for example the multi-processing in GridSearchCV
and some ensemble methods. It's Parallel
helper class is a very handy Swiss knife for embarrassingly parallel for loops.
This is an example to train multiple LinearSVC models with different random states in parallel with 4 processes using joblib:
from joblib import Parallel, delayed
from sklearn.svm import LinearSVC
import numpy as np
def train_model(X, y, seed):
model = LinearSVC(random_state=seed)
return model.fit(X, y)
X = np.array([[1,2,3],[4,5,6]])
y = np.array([0, 1])
result = Parallel(n_jobs=4)(delayed(train_model)(X, y, seed) for seed in range(10))
# result is a list of 10 models trained using different seeds
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…