Skip to content

Commit

Permalink
Merge branch 'bugfix/CI' of https://github.com/curso-r/treesnip into …
Browse files Browse the repository at this point in the history
…bugfix/CI
  • Loading branch information
dfalbel committed Dec 26, 2021
2 parents 7ca3169 + 119f1f5 commit d294b0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/catboost.R
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ add_boost_tree_catboost <- function() {
parsnip::set_model_arg(
model = "boost_tree",
eng = "catboost",
parsnip = "sample_size",
parsnip = "sample_prop",
original = "subsample",
func = list(pkg = "dials", fun = "sample_prop"),
has_submodel = FALSE
Expand Down
2 changes: 1 addition & 1 deletion R/lightgbm.R
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ add_boost_tree_lightgbm <- function() {
parsnip::set_model_arg(
model = "boost_tree",
eng = "lightgbm",
parsnip = "sample_size",
parsnip = "sample_prop",
original = "bagging_fraction",
func = list(pkg = "dials", fun = "sample_prop"),
has_submodel = FALSE
Expand Down
1 change: 1 addition & 0 deletions vignettes/working-with-lightgbm-catboost.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ vignette: >
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = FALSE,
warning = FALSE,
message = FALSE,
eval = FALSE
Expand Down

0 comments on commit d294b0d

Please sign in to comment.