當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。