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


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