AttributeError: 'RandomOverSampler' object has no attribute 'fit_sample'

AttributeError: 'RandomOverSampler' object has no attribute 'fit_sample'

我正在尝试使用 imblearn 中的 RandomOverSampler,但出现错误。

查看其他帖子,旧版本似乎有问题,但我检查了我的版本并发现:

sklearn.__version__
'0.24.1'

imblearn.__version__
'0.8.0'

这是我正在尝试的代码 运行:

from imblearn.over_sampling import RandomOverSampler

OS = RandomOverSampler(sampling_strategy='auto', random_state=0)
osx, osy = OS.fit_sample(X, y)

我得到的错误是:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-9-a080b92fc7bc> in <module>
      2 
      3 OS = RandomOverSampler(sampling_strategy='auto', random_state=0)
----> 4 osx, osy = OS.fit_sample(X, y)

AttributeError: 'RandomOverSampler' object has no attribute 'fit_sample'

你想要 OS.fit_resample(X, y),而不是 fit_sample

你想要 OS.fit_resample(X, y),而不是 fit_resample。