Skip to content

Commit

Permalink
Fix missing cuML Random Forest parameter (IntelPython#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandruss authored Jun 10, 2021
1 parent dda3bac commit bd1d52b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cuml_bench/df_clsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def fit(X, y):
n_estimators=params.num_trees,
max_depth=params.max_depth,
max_features=params.max_features,
min_rows_per_node=params.min_samples_split,
min_samples_split=params.min_samples_split,
max_leaves=params.max_leaf_nodes,
min_impurity_decrease=params.min_impurity_decrease,
bootstrap=params.bootstrap)
Expand Down
2 changes: 1 addition & 1 deletion cuml_bench/df_regr.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def fit(X, y):
n_estimators=params.num_trees,
max_depth=params.max_depth,
max_features=params.max_features,
min_rows_per_node=params.min_samples_split,
min_samples_split=params.min_samples_split,
max_leaves=params.max_leaf_nodes,
min_impurity_decrease=params.min_impurity_decrease,
bootstrap=params.bootstrap)
Expand Down

0 comments on commit bd1d52b

Please sign in to comment.