Skip to content

Commit 4c2d3ca

Browse files
committed
update sdm methods: add gbm2 for Boosted Regression Trees and refine svm2 for better classification
1 parent 1c276cb commit 4c2d3ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/mod_ssdm_helpers.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,8 +1596,8 @@ sdm_model_settings <- function() {
15961596
glmnet2 = list(maxit = 100000L),
15971597
mars = list(),
15981598
mars2 = list(),
1599-
gbm = list(n.trees = 2000L, interaction.depth = 4L),
1600-
gbm2 = list(n.trees = 2000L, interaction.depth = 4L),
1599+
gbm = list(n.trees = 4000L, interaction.depth = 4L),
1600+
gbm2 = list(n.trees = 4000L, interaction.depth = 4L),
16011601
rf = list(ntree = 1000L, nodesize = 5L),
16021602
rf2 = list(ntree = 1000L, nodesize = 5L),
16031603
ranger = list(

0 commit comments

Comments
 (0)