看来我们俩在这里都有类似的问题。不幸的是,不平衡学习并不总是你需要的,scikit 也没有提供你想要的功能。您将需要实现自己的代码。
这就是我为我的申请提出的。请注意,我没有大量时间来调试它,但我相信它可以从我所做的测试中工作。希望能帮助到你:
def equal_sampler(classes, data, target, test_frac):
# Find the least frequent class and its fraction of the total
_, count = np.unique(target, return_counts=True)
fraction_of_total = min(count) / len(target)
# split further into train and test
train_frac = (1-test_frac)*fraction_of_total
test_frac = test_frac*fraction_of_total
# initialize index arrays and find length of train and test
train=[]
train_len = int(train_frac * data.shape[0])
test=[]
test_len = int(test_frac* data.shape[0])
# add values to train, drop them from the index and proceed to add to test
for i in classes:
indeces = list(target[target ==i].index.copy())
train_temp = np.random.choice(indeces, train_len, replace=False)
for val in train_temp:
train.append(val)
indeces.remove(val)
test_temp = np.random.choice(indeces, test_len, replace=False)
for val in test_temp:
test.append(val)
# X_train, y_train, X_test, y_test
return data.loc[train], target[train], data.loc[test], target[test]
对于输入,classes 需要一个可能值的列表,data 需要用于预测的数据框列,target 需要目标列。
请注意,由于三重 for 循环(list.remove 需要线性时间),该算法可能不是非常有效。尽管如此,它应该相当快。