Attributeerror: 'Smote' Object Has No Attribute 'Fit_Sample'
Hi Can Anyone Help Why I Am Getting Attributeerror: 'Smote' Object Has No Attribute 'Fit_Sample' Error? I Don't Think This Code Should Cause Any Error? Thanks...
Hi can anyone help why I am getting AttributeError: 'SMOTE' object has no attribute 'fit_sample' error? I don't think this code should cause any error? Thanks
from imblearn.over_sampling import SMOTE
smt = SMOTE(random_state=0)
X_train_SMOTE, y_train_SMOTE = smt.fit_sample(X_train, y_train)
1 Answer
If you import like this
from imblearn.over_sampling import SMOTE
you need to do fit_resample()
oversample = SMOTE()
X, y = oversample.fit_resample(X, y)