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


R dials over_ratio 类别不平衡抽样的参数


对于上采样和下采样方法,这些参数控制在训练集中添加或删除的数据量。

用法

over_ratio(range = c(0.8, 1.2), trans = NULL)

under_ratio(range = c(0.8, 1.2), trans = NULL)

参数

range

一个二元素向量,分别保存最小和最大可能值的默认值。如果指定了转换,这些值应采用转换后的单位。

trans

scales 包中的 trans 对象,例如 scales::log10_trans()scales::reciprocal_trans() 。如果未提供,则使用与 range 中使用的单位相匹配的默认值。如果没有转换,NULL

细节

有关这些参数的解释,请参阅recipes::step_upsample()recipes::step_downsample()

例子

under_ratio()
#> Under-Sampling Ratio (quantitative)
#> Range: [0.8, 1.2]
over_ratio()
#> Over-Sampling Ratio (quantitative)
#> Range: [0.8, 1.2]

相关用法


注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 Parameters for class-imbalance sampling。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。