This function implements the MLTL algorithm. It is a preprocessing algorithm for imbalanced multilabel datasets, whose aim is to identify tomek links (majoritary instances with a very different neighbor), and remove them. It's like MLeNN, with the number of neighbors being 1.
MLTL(D, TH, neighbors = NULL, tableVDM = NULL)
An mldr object containing the preprocessed multilabel dataset
mld mldr
object with the multilabel dataset to preprocess
threshold for the Hamming Distance in order to consider an instance different to another one.
Structure with instances and neighbors. If it is empty, it will be calculated by the function
Dataframe object containing previous calculations for faster processing. If it is empty, the algorithm will be slower