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


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