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


R butcher axe-model_fit 取消 model_fit。


model_fit 对象是从parsnip 包创建的。

用法

# S3 method for model_fit
axe_call(x, verbose = FALSE, ...)

# S3 method for model_fit
axe_ctrl(x, verbose = FALSE, ...)

# S3 method for model_fit
axe_data(x, verbose = FALSE, ...)

# S3 method for model_fit
axe_env(x, verbose = FALSE, ...)

# S3 method for model_fit
axe_fitted(x, verbose = FALSE, ...)

参数

x

一个模型对象。

verbose

每次执行 ax 方法时打印信息。记录释放了多少内存以及禁用了哪些函数。默认为 FALSE

...

与砍伐相关的任何其他参数。

砍掉model_fit对象。

例子

library(parsnip)
library(rpart)

# Create model and fit
lm_fit <- linear_reg() %>%
  set_engine("lm") %>%
  fit(mpg ~ ., data = mtcars)

out <- butcher(lm_fit, verbose = TRUE)
#> ✔ Memory released: 6.54 kB

# Another parsnip model
rpart_fit <- decision_tree(mode = "regression") %>%
  set_engine("rpart") %>%
  fit(mpg ~ ., data = mtcars, minsplit = 5, cp = 0.1)

out <- butcher(rpart_fit, verbose = TRUE)
#> ✔ Memory released: 55.18 kB
源代码:R/model_fit.R

相关用法


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