Get a model from a tidyAML model tibble.
Details
This function allows you to get a model or models from a tibble with
a class of "tidyaml_mod_spec_tbl". It allows you to select the model by the
.model_id column. You can call the model id's by an integer or a sequence
of integers.
See also
Other Extractor:
extract_model_spec(),
extract_regression_residuals(),
extract_tunable_params(),
extract_wflw(),
extract_wflw_fit(),
extract_wflw_pred()
Examples
library(recipes)
rec_obj <- recipe(mpg ~ ., data = mtcars)
spec_tbl <- fast_regression_parsnip_spec_tbl(
  .parsnip_fns = "linear_reg",
  .parsnip_eng = c("lm","glm")
)
get_model(spec_tbl, 1)
#> # A tibble: 1 × 5
#>   .model_id .parsnip_engine .parsnip_mode .parsnip_fns model_spec
#>       <int> <chr>           <chr>         <chr>        <list>    
#> 1         1 lm              regression    linear_reg   <spec[+]> 
get_model(spec_tbl, 1:2)
#> # A tibble: 2 × 5
#>   .model_id .parsnip_engine .parsnip_mode .parsnip_fns model_spec
#>       <int> <chr>           <chr>         <chr>        <list>    
#> 1         1 lm              regression    linear_reg   <spec[+]> 
#> 2         2 glm             regression    linear_reg   <spec[+]> 
