📜  dask scikit learn - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:19.837000             🧑  作者: Mango

代码示例1
from dask.distributed import Client
import joblib

client = Client()  # Connect to a Dask Cluster

with joblib.parallel_backend('dask'):
    # Your normal scikit-learn code here