| Algorithm 1. The mFCBF algorithm receives the users’ feature matrix (), minimum correlation threshold () and the maximum correlation threshold () and returns the selected set of features. |
| 1: Function mFCBF (,, ) 2: Calculate corr () 3: Select columns whose correlation with the output is > 4: Calculate corr () 5: Select columns whose correlation with the input is < and with the highest correlation with the output. 6: Return () 7: End function |