Algorithm 1WAM Algorithm:
|
Given a training dataset with p features, a testing dataset a feature selection method a threshold parameter and a learning algorithm
-
(i)
For generate bootstrap samples, of the training dataset
-
(ii)
Based on , get the features score matrix
-
(iii)
Get the aggregated score set
-
(iv)
For the aggregated score set get the corresponding rank vector
-
(v)
Based on the rank vector keep only the top of the variable set
-
(vi)
Based on the selected feature set in (v), use the testing dataset and a cross-validation technique to train and test the model
|