is there a way to tune the tweedie_variance_power parameter when using engine xgboost in tidymodels? It's not in the current list for boost_tree
so this doesn't work:
xgb_model <-
boost_tree(
trees = 1000,
tree_depth = tune(),
min_n = tune(),
loss_reduction = tune(),
sample_size = tune(),
mtry = tune(),
learn_rate = tune() ,
tweedie_variance_power = tune()
) %>%
set_engine("xgboost",
nthreads = parallel::detectCores(),
objective='reg:tweedie') %>%
set_mode("regression")