pull_dials_object {dials}R Documentation

Return a dials parameter object associated with parameters

Description

[Deprecated]

This function has been deprecated; please use hardhat::extract_parameter_dials() instead.

pull_dials_object() can extract a single dials parameter object from different types of objects (e.g. parameter sets, recipes, etc.).

Usage

pull_dials_object(x, id, ...)

Arguments

x

The results of a call to parameters(), a recipe, model specification, or workflow.

id

A single string for the id of the parameter.

...

Not currently used.

Value

A dials parameter object.

Examples

glmn_param <- parameters(lambda = penalty(), mixture())
# pull_dials_object(glmn_param, "lambda")
# ->
extract_parameter_dials(glmn_param, "lambda")

[Package dials version 1.2.1 Index]