NMAI-lab / JLOAF

Java Learning from observation Framework using CBR and Bayesian Networks
3 stars 4 forks source link

Implement the sampling method from this paper #32

Closed sachag678 closed 7 years ago

sachag678 commented 7 years ago

A Novel Similarity Based Under-sampling of Imbalanced Datasets by Maira Anis

sachag678 commented 7 years ago

Implementing SMOTE instead.

sachag678 commented 7 years ago

Implementing undersampling of majority class since, SMOTE requires adding new synthetic data into a sequence which messes up the sequence. Need to find a way to make new synthetic sequence data.

sachag678 commented 7 years ago

Undersampling on the majority class performs better than the initial sampling algorithm that was implemented.

sachag678 commented 7 years ago

Implemented Random undersampling which performs better than just removing cases in succession.

sachag678 commented 7 years ago

Complete