本文整理汇总了Python中imblearn.under_sampling.RandomUnderSampler.fit方法的典型用法代码示例。如果您正苦于以下问题:Python RandomUnderSampler.fit方法的具体用法?Python RandomUnderSampler.fit怎么用?Python RandomUnderSampler.fit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类imblearn.under_sampling.RandomUnderSampler
的用法示例。
在下文中一共展示了RandomUnderSampler.fit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_rus_sample_wrong_X
# 需要导入模块: from imblearn.under_sampling import RandomUnderSampler [as 别名]
# 或者: from imblearn.under_sampling.RandomUnderSampler import fit [as 别名]
def test_rus_sample_wrong_X():
"""Test either if an error is raised when X is different at fitting
and sampling"""
# Create the object
rus = RandomUnderSampler(random_state=RND_SEED)
rus.fit(X, Y)
assert_raises(RuntimeError, rus.sample,
np.random.random((100, 40)), np.array([0] * 50 + [1] * 50))
示例2: test_rus_fit
# 需要导入模块: from imblearn.under_sampling import RandomUnderSampler [as 别名]
# 或者: from imblearn.under_sampling.RandomUnderSampler import fit [as 别名]
def test_rus_fit():
"""Test the fitting method"""
# Create the object
rus = RandomUnderSampler(random_state=RND_SEED)
# Fit the data
rus.fit(X, Y)
# Check if the data information have been computed
assert_equal(rus.min_c_, 0)
assert_equal(rus.maj_c_, 1)
assert_equal(rus.stats_c_[0], 3)
assert_equal(rus.stats_c_[1], 7)