Skip to content

Commit

Permalink
Merge pull request #5204 from rapidsai/branch-23.02
Browse files Browse the repository at this point in the history
Forward-merge branch-23.02 to branch-23.04
  • Loading branch information
GPUtester authored Feb 5, 2023
2 parents 9f5348e + 8f15cc1 commit 0ae378d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/cuml/dask/ensemble/randomforestclassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ def _construct_rf(
**kwargs
)

@staticmethod
def _predict_model_on_cpu(model, X, convert_dtype):
return model._predict_model_on_cpu(X, convert_dtype=convert_dtype)

def get_summary_text(self):
"""
Obtain the text summary of the random forest model
Expand Down

0 comments on commit 0ae378d

Please sign in to comment.