当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R hardhat tune 标记要调整的参数


tune() 是与食谱、防风草和调整包一起使用的参数占位符。它标记了用于调整的食谱步骤和防风草模型参数。

用法

tune(id = "")

参数

id

单个字符值,可用于区分在多个位置使用但具有相同名称的参数,或者如果用户想要向指定参数添加注释。

回显用户输入的调用对象。

也可以看看

tune::tune_grid() , tune::tune_bayes()

例子

tune()
#> tune()
tune("your name here")
#> tune("your name here")

# In practice, `tune()` is used alongside recipes or parsnip to mark
# specific arguments for tuning
library(recipes)

recipe(mpg ~ ., data = mtcars) %>%
  step_normalize(all_numeric_predictors()) %>%
  step_pca(all_numeric_predictors, num_comp = tune())
#> 
#> ── Recipe ────────────────────────────────────────────────────────────────
#> 
#> ── Inputs 
#> Number of variables by role
#> outcome:    1
#> predictor: 10
#> 
#> ── Operations 
#> • Centering and scaling for: all_numeric_predictors()
#> • PCA extraction with: all_numeric_predictors
源代码:R/tune.R

相关用法


注:本文由纯净天空筛选整理自Davis Vaughan等大神的英文原创作品 Mark arguments for tuning。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。