axs[0].set_title("RandomOverSampler with normal bootstrap")
sampler = RandomOverSampler(smoothed_bootstrap=True, shrinkage=0.2, random_state=0)
plot_resampling(X, y, sampler, ax=axs[1])
axs[1].set_title("RandomOverSampler with smoothed bootstrap")
fig.tight_layout()
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// It looks like more samples are generated with smoothed bootstrap. This is due