unknown()
创建一个表达式,用于表示该值将在稍后指定。
值
unknown()
返回 unknown()
的表达式值。
is_unknown()
返回一个与 x
相同的逻辑向量,即 TRUE
是 x
的元素未知,FALSE
否则。
has_unknowns()
返回单个逻辑,指示 range
是否为 param
对象具有任何未知值。
例子
# Just returns an expression
unknown()
#> unknown()
# Of course, true!
is_unknown(unknown())
#> [1] TRUE
# Create a range with a minimum of 1
# and an unknown maximum
range <- c(1, unknown())
range
#> [[1]]
#> [1] 1
#>
#> [[2]]
#> unknown()
#>
# The first value is known, the
# second is not
is_unknown(range)
#> [1] FALSE TRUE
# mtry()'s maximum value is not known at
# creation time
has_unknowns(mtry())
#> [1] TRUE
相关用法
- R dials update.parameters 更新参数集中的单个参数
- R dials smoothness 内核平滑度
- R dials all_neighbors 确定使用哪些邻居的参数
- R dials rbf_sigma 内核参数
- R dials trim_amount 修剪量
- R dials neighbors 邻居数量
- R dials num_comp 新函数数量
- R dials min_dist 嵌入点之间的有效最小距离参数
- R dials freq_cut 接近零方差参数
- R dials trees 与基于树和基于规则的模型相关的参数函数。
- R dials learn_rate 学习率
- R dials range_validate 用于处理参数范围的工具
- R dials xgboost_parameters xgboost 可能的引擎参数的参数
- R dials prune_method MARS修剪方法
- R dials max_tokens 保留令牌的最大数量
- R dials surv_dist 删失数据的参数分布
- R dials num_tokens 用于确定 ngram 中标记数量的参数
- R dials over_ratio 类别不平衡抽样的参数
- R dials mtry 随机抽样预测变量的数量
- R dials new-param 用于创建新参数对象的工具
- R dials momentum 梯度下降动量参数
- R dials class_weights 不平衡问题的类别权重参数
- R dials mtry_prop 随机选择的预测变量的比例
- R dials finalize 用于最终确定数据特定参数范围的函数
- R dials mixture 处罚条款的混合
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Placeholder for unknown parameter values。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。