10000 MATLAB-SMOTE/README.md at master · kedarps/MATLAB-SMOTE · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 619 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 619 Bytes

MATLAB-SMOTE

Matlab implementation of Synthetic Minority Oversampling Technique (SMOTE)

A technique to generate synthetic samples as given by Chawla et. al., 2002

Usage:

X_smote = mySMOTE(X, N, k)

Inputs:

  • X: Original dataset (n x d) matrix
  • N: Percentage of data-augmentation intended, Typically, N > 100, if N < 100, then N is set to 100. (scalar)
  • k: number of nearest neighbors to consider while performing augmentation (scalar)

Outputs:

  • X_smote: augmented dataset containing original data as well. (m x d) matrix, where m > n
0