Skip to content

Commit

Permalink
update forest params (#2286)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr-Solovev authored Feb 28, 2023
1 parent b3b8ed5 commit 32c31e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void run(sycl::queue& q) {

const auto df_desc =
df::descriptor<float, df::method::hist, df::task::regression>{}
.set_tree_count(100)
.set_tree_count(150)
.set_features_per_node(0)
.set_min_observations_in_leaf_node(1)
.set_error_metric_mode(df::error_metric_mode::out_of_bag_error |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void run(sycl::queue &queue) {
const auto df_desc =
df::descriptor<float, df::method::hist, df::task::classification>{}
.set_class_count(5)
.set_tree_count(10)
.set_tree_count(50)
.set_features_per_node(x_train.get_column_count())
.set_min_observations_in_leaf_node(8)
.set_min_observations_in_split_node(16)
Expand Down

0 comments on commit 32c31e5

Please sign in to comment.