In imblearn, what is the difference between smote.fit_sample()
and smote.fit_resample()
, and when should we use one over the other?
Asked
Active
Viewed 1,359 times
3

Alexander L. Hayes
- 3,892
- 4
- 13
- 34

Manish KC
- 103
- 1
- 9
1 Answers
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

Kanishth Karthik
- 21
- 2