Skip to content

Commit 29dab3e

Browse files
committed
parsnip:::make_call to parsnip::make_call tidymodels/parsnip#383
1 parent 5d9053c commit 29dab3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/catboost.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ train_catboost <- function(x, y, depth = 6, iterations = 1000, learning_rate = N
304304
params = arg_list
305305
)
306306

307-
call <- parsnip:::make_call(fun = "catboost.train", ns = "catboost", main_args)
307+
call <- parsnip::make_call(fun = "catboost.train", ns = "catboost", main_args)
308308
rlang::eval_tidy(call, env = rlang::current_env())
309309
}
310310

R/lightgbm.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ train_lightgbm <- function(x, y, max_depth = 17, num_iterations = 10, learning_r
280280
params = arg_list
281281
)
282282

283-
call <- parsnip:::make_call(fun = "lgb.train", ns = "lightgbm", main_args)
283+
call <- parsnip::make_call(fun = "lgb.train", ns = "lightgbm", main_args)
284284
rlang::eval_tidy(call, env = rlang::current_env())
285285
}
286286

0 commit comments

Comments
 (0)