Skip to content

Instantly share code, notes, and snippets.

@rikturr
Created July 30, 2020 20:19
Show Gist options
  • Save rikturr/edd617ea56f7051b4d5b65e72ef5d2ce to your computer and use it in GitHub Desktop.
Save rikturr/edd617ea56f7051b4d5b65e72ef5d2ce to your computer and use it in GitHub Desktop.
rapids_rf
from cuml.dask.ensemble import RandomForestRegressor
rf = RandomForestRegressor(n_estimators=100, max_depth=10, seed=42)
_ = rf.fit(X, y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment