Skip to content

Instantly share code, notes, and snippets.

@gmaikelc
gmaikelc / mg_rf_dask.py
Created October 28, 2023 20:20 — forked from kalufinnle/mg_rf_dask.py
Multi GPU RF using DASK
from cuml.dask.ensemble import RandomForestClassifier as cuRF_mg
# cuml Random Forest params
cu_rf_params = {
n_estimators’: 25,
max_depth’: 13,
n_bins’: 15,
n_streams’: 8
}
# Start by setting up the CUDA cluster on the local host