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


R butcher axe-train.recipe 砍掉一個 train.recipe 對象。


train.recipe 對象與從 caret 包創建的列車對象略有不同,因為它還包含來自 recipe 的數據預處理指令。因此,包含了特定於 train.recipe 的刪除函數,因為需要額外的步驟來刪除 train.recipe 對象的部分內容。

用法

# S3 method for train.recipe
axe_call(x, ...)

# S3 method for train.recipe
axe_ctrl(x, ...)

# S3 method for train.recipe
axe_data(x, ...)

# S3 method for train.recipe
axe_env(x, ...)

# S3 method for train.recipe
axe_fitted(x, ...)

參數

x

一個模型對象。

...

與砍伐相關的任何其他參數。

砍掉train.recipe對象。

例子

library(recipes)
library(caret)
data(biomass, package = "modeldata")

data(biomass)
recipe <- biomass %>%
  recipe(HHV ~ carbon + hydrogen + oxygen + nitrogen + sulfur) %>%
  step_center(all_predictors()) %>%
  step_scale(all_predictors()) %>%
  step_spatialsign(all_predictors())

train.recipe_fit <- train(recipe, biomass,
                          method = "svmRadial",
                          metric = "RMSE")

out <- butcher(train.recipe_fit, verbose = TRUE)
#> ✔ Memory released: 183.39 kB
源代碼:R/train.recipe.R

相關用法


注:本文由純淨天空篩選整理自Davis Vaughan等大神的英文原創作品 Axing a train.recipe object.。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。