3

In , what is the difference between smote.fit_sample() and smote.fit_resample(), and when should we use one over the other?

Alexander L. Hayes
  • 3,892
  • 4
  • 13
  • 34
Manish KC
  • 103
  • 1
  • 9

1 Answers1

1

fit_sample was replaced with fit_resample. Changelog v0.4

Based on the diff, specifically: fit_sample = fit_resample; it looks like fit_resample should be backward compatible to work in place of fit_sample