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

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) 
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy