Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Last active October 20, 2021 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liannewriting/c3ef2c6350935c66784813a5b35c2d46 to your computer and use it in GitHub Desktop.
Save liannewriting/c3ef2c6350935c66784813a5b35c2d46 to your computer and use it in GitHub Desktop.
python imbalanced data machine learning classification
from imblearn.over_sampling import RandomOverSampler
ros = RandomOverSampler(random_state=888)
X_resampled, y_resampled = ros.fit_resample(df_train[features], df_train['Class'])
y_resampled.value_counts()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment