Algorithm installation
(1) Download and extract the “MLM.zip” file to a folder of choice;
(2) start MATLAB;
(3) navigate within MATLAB to the folder where the “MLM.zip” file was extracted;
(4) within MATLAB, right click on the folder “MLM” and select “Add to Path > Selected Folders and Subfolders”.
Selecting the dataset
To execute the example dataset, go to the folder “MLM > DATASET” within MATLAB, and double-click on the file ‘DATASET.mat’. For running the algorithm with another dataset, navigate within MATLAB to the “work” folder (i.e., the folder containing the dataset of interest), and double-click on it.
Using MLM algorithm
MLM algorithm was built to divide the spectral cohort into training and test sets. The training set should contain 70% of the samples, and the test set 30% of the samples. For this, firstly it is necessary to calculate how many samples must be assigned to the training and test set. For example, in the example dataset depicted in Figure 2a, class 1 is divided into 98 samples for training (70%, 0.7 ** 140 = 98) and 42 samples for test (30%, 0.3 ** 140 = 42); and class 2 is divided into 70 samples for training (70%, 0.7 ** 100 = 70) and 30 samples for test (30%, 0.3 ** 100 = 30).
After the number of training and test sample for each class is calculated, the algorithm should be applied by typing the commands depicted in Figure 2b in the MATLAB Command Window. In this figure, the following steps are performed:
(1) Sample splitting for class 1, where 98 is the number of training samples and 42 is the number of test samples:
[Train1,Test1,Group_Train1,Group_Test1] = mlm(X1,Y1,98,42);
(2) Sample splitting for class 2, where 70 is the number of training samples and 30 is the number of test samples:
[Train2,Test2,Group_Train2,Group_Test2] = mlm(X2,Y2,70,30);
(3) Building the Training set by combining the training samples of class 1 and 2:
Train=[Train1;Train2];
(4) Building the Test set by combining the test samples of class 1 and 2:
Test=[Test1;Test2];
(5) Building the group category representing the training samples:
Group_Train=[Group_Train1;Group_Train2];
(6) Building the group category representing the test samples:
Group_Test=[Group_Test1;Group_Test2];
For more than two classes, the procedure is the same, where the sample splitting is performed for each class separately. The random-mutation factor is set as 10% (default).
CAUTION. The number of training and test samples for each class must be an integer value. In the case of 70% and 30% generate numbers with decimal places, they must be rounded to the closest integer value (e.g., 25.7 to 26; 14.2 to 14; 70.9 to 71; etc).