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


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.。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。