Next Article in Journal
Interpretable Cross-Subject EEG-Based Emotion Recognition Using Channel-Wise Features
Previous Article in Journal
Multi-Sensor Extrinsic Calibration Using an Extended Set of Pairwise Geometric Transformations
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Label Noise Cleaning with an Adaptive Ensemble Method Based on Noise Detection Metric

1
Department of Remote Sensing Science and Technology, School of Electronic Engineering, Xidian University, Xi’an 710071, China
2
Laboratory of Information Processing and Transmission, L2TI, Institut Galilée, University Paris XIII, 93430 Paris, France
*
Author to whom correspondence should be addressed.
Sensors 2020, 20(23), 6718; https://doi.org/10.3390/s20236718
Submission received: 22 September 2020 / Revised: 1 November 2020 / Accepted: 19 November 2020 / Published: 24 November 2020
(This article belongs to the Section Physical Sensors)

Abstract

:
Real-world datasets are often contaminated with label noise; labeling is not a clear-cut process and reliable methods tend to be expensive or time-consuming. Depending on the learning technique used, such label noise is potentially harmful, requiring an increased size of the training set, making the trained model more complex and more prone to overfitting and yielding less accurate prediction. This work proposes a cleaning technique called the ensemble method based on the noise detection metric (ENDM). From the corrupted training set, an ensemble classifier is first learned and used to derive four metrics assessing the likelihood for a sample to be mislabeled. For each metric, three thresholds are set to maximize the classifying performance on a corrupted validation dataset when using three different ensemble classifiers, namely Bagging, AdaBoost and k-nearest neighbor (k-NN). These thresholds are used to identify and then either remove or correct the corrupted samples. The effectiveness of the ENDM is demonstrated in performing the classification of 15 public datasets. A comparative analysis is conducted concerning the homogeneous-ensembles-based majority vote method and consensus vote method, two popular ensemble-based label noise filters.

1. Introduction

In machine learning, the prediction accuracy depends not only on the appropriate choice of the learning technique, but also on the quality of the database. Quoting [1], “real-world databases are estimated to contain around five percent of encoding errors, all fields taken together when no specific measures are taken.” Noise-contaminating databases can be mainly of two types: feature noise or label noise, also called class noise (i.e., mislabeled data) [2]. Whether one or the other prevails depends on the application field. Using inaccurate sensors or choosing less invasive measurements may explain why the feature noise is predominant. On the other hand, labeling training instances may be contaminated with data entry errors. It is a costly and rather subjective task as the meaning of a label could be inadequate [3,4,5,6,7,8,9,10], As a result, the label noise could be predominant.
Feature noise is generally spread over many features and each feature noise component tends to be statistically independent of the others, and most learned classifiers are robust to such noise. Conversely, label noise can significantly affect the learning performance [11,12,13] and should be taken into account when designing learning algorithms [14]. Noise can increase the number of necessary training instances, the complexity of learned models, the number of nodes in decision trees [1] and the size (number of base classifiers) of an ensemble classifier [5]. Learning from noisy labeled data can also create overfitting [15]. Incorrectly labeled examples may severely bias the learning method and result in inaccurate models [5].
As learning from noisy labeled data is a challenging issue [3], an important subfield of the literature is devoted to its study [1,16]. It follows mainly three ideas: finding robust learning techniques [17,18], postprocessing data by adapting learning techniques, and preprocessing data by removing some instances, or sometimes by correcting some labels. Many Bagging-based [19] ensemble techniques are more robust learning techniques as compared to the support vector machine (SVM) [20], which uses support vectors, AdaBoost [21], which happens to give more weight to mislabeled samples, or k-nearest neighbor (k-NN) [22], especially when only one neighbor is considered ( k = 1 ).
This first idea—“finding robust learning techniques”—is generally regarded as less effective [3]. The second idea—“postprocessing data by adapting learning techniques”—is an active research topic that includes probabilistic methods derived from the mislabeling random assumption and model-based methods, attempting to avoid the consequences of label noise [1]. The third idea—“removing or correcting some instances”, which we follow in this work—was already popular in the eighties [17]. It consists of designing filters, detecting mislabeled instances and removing them [4,23] or correcting them [24,25]. Often with some similarities to outlier detection, such noise filters focus on the instances that are difficult to classify and are easy to use [26]. When filtering a training set, two conflicting difficulties are encountered:
  • (Case 1) A clean sample is regarded as mislabeled and cleaned. This case harms the classification performance, especially when the size of the training dataset is small.
  • (Case 2) A mislabeled sample is regarded as clean and retained or unchanged. This makes noisy samples remain in the training dataset and degrades the classification performance.
The ensemble approach is a popular method to filter out mislabeled instances [4,15,23,27,28,29]. It constructs a set of base-level classifiers and then uses their classifications to identify mislabeled instances [11]. The majority filter and consensus filter are two typical noise cleaning methods. A majority filter tags an instance as mislabeled if more than half of the base classifiers do not predict the right label. A consensus filter tags an instance as mislabeled if all base classifiers do not predict the right label. When using the consensus filter whose criterion is strict, only a small portion of the label noise is removed. Most mislabeled instances then remain in the filtered training set and performance is hindered, more than when using the majority vote filter, as it removes a higher portion of the label noise. Because of the diversity of the ensemble classifier used in these majority filter, samples near the classification boundary have a reduced amount of base classifiers predicting the right label, and more correctly, labeled instances are removed from the training set, which can negatively affect the classifier’s performance [1,30].
Depending on whether base classifiers are induced using different or similar learning techniques, the ensemble-based noise filtering method is referred to as heterogeneous or homogeneous.
In the heterogeneous method, an ensemble classifier detects mislabeled instances by constructing a set of base-level detectors (classifiers) and then using their classification errors to identify mislabeled instances. Brodley et al. chose three well-known algorithms from the machine learning and statistical pattern recognition communities to form the filters: decision trees, nearest neighbor classifiers, and linear machines. An instance is tagged as mislabeled if α of the T base-level classifiers cannot classify it correctly. In heterogeneous ensembles, the decision borders are varied because the individual classifiers are of different types. The dispersion of class noise may reflect this variability. Hence, this method tends to eliminate instances that lie on the wrong side of the classification boundary, which can negatively affect the classifier’s performance.
The homogeneous ensemble vote for noise filtering [15] is an improved version of the aforementioned heterogeneous ensemble-based method. Verbaeten and Assche considered the problem of mislabeled training examples by preprocessing the training set based on some well-known ensemble classification methods (Bagging and boosting) [15] using C4.5 as base classifier [31]. They proposed two approaches:
  • Filtering based on voting (consensus vote and majority vote) of base classifiers of a Bagging ensemble.
  • Filtering based on removing training examples that obtained high weights in the boosting process. Indeed, mislabeled examples are assumed to have high weights.
Results show that majority vote filters are still more accurate than consensus filters in the homogeneous ensemble method. In addition, Bagging majority vote filters outperform the boosting filters. The boosting filter tends to incorrectly remove many important correctly labeled instances with large weights. In addition, in a homogeneous ensemble, the decision boundaries of the individual classifiers are similar to each other. Then, noisy examples close to this decision boundary can be detected effectively by the majority voting [32]. In summary, in this paper, the homogeneous ensemble-vote-based method for noise filtering is used as the comparison in the experiment.
As an example of the ensemble approach but in a different manner, there is outlier removal boosting (ORBoost) [33], where data cleaning is performed while learning, and not after nor before. The only difference with AdaBoost is that the weight assigned to each sample is set to zero when it exceeds a certain threshold. Good performance is observed when the label noise is low.
An ensemble classifier induced on a training set is also a precious information source on each instance: how many base classifiers did not predict correctly? What is the cumulative weight of these base classifiers failing to predict the assigned label? To what extent might the ensemble classifier have been able to predict a different label? These questions have greatly influenced our work. Using a technical definition of an edge [34,35] exploited the answers to the two first questions to detect mislabeled instances. [23] exploited the answer to the third question to compute for each instance a margin with which mislabeled instances are detected. However, an important amount of mislabeled instances are not removed, perhaps because the possibly correct label of instances from the training set have actually no impact on the margin value and the amount of suspicious instances removed is set upon the performance on a validation dataset using Bagging, which happens to be fairly robust to label noise. Our work is different in that (1) to set the amount of removed samples, instead of only Bagging, it adopts three methods (Bagging, AdaBoost and k-NN, with k = 1 rendering it especially noise-sensitive); (2) four noise detection metrics are considered (instead of one); (3) the ENDM is extended to label noise correction. A comparative analysis is also conducted concerning the majority vote filter [4,15].
In the paper, we deal with the label noise issue using an adaptive ensemble method based on a noise detection metric (ENDM). It is called adaptive because there is no fixed threshold being used to select the suspicious instances as for majority and consensus filters—rather, there is a counting parameter whose value is selected using a validation set. Our proposed method for noise detection is described in Section 2. In Section 3, we present the results of an empirical evaluation of the proposed method and a comparison with other state-of-the-art noise detection methods. In Section 4, the conclusions are provided, and future works are discussed.

2. Label Noise Cleaning with an Adaptive Ensemble Method Based on Noise Detection Metrics

2.1. Label Noise Detection Metric

In this work, it is assumed that all instances have an unknown, yet fixed, probability of being misclassified. This assumption is called the uniform label noise in [1]. To assess whether an instance is more likely to be misclassified than another, a homogeneous ensemble classifier is trained and four metrics are computed based on the votes of the base classifiers and their number [5]. Once samples are ordered according to one of the metrics, it suffices to use a validation set to fix the exact number of tagged instances and hence to select the suspicious instances [23]. The flowchart of the proposed method is shown on Figure 1.
Let us define some notations,
  • ζ is an ensemble model composed of T base classifiers,
  • ( x , y ) is an instance, with x as a feature vector and y as one of the C class labels,
  • S = ( x 1 , y 1 ) , , ( x n , y N ) is a set of N training samples,
  • v ( x , c ) is the number of classifiers predicting the label c when the feature vector is x ,
  • Λ ( x , y ) is a metric assessing the likelihood that a sample ( x , y ) will be mislabeled (it is used to sort samples),
  • 1 ( P ) is equal to one when statement P is true and is equal to zero otherwise,
  • λ counting parameter.
All four metrics proposed are ranging from 0 to 1, 0 indicating that the label is very suspicious and 1 indicating that this label is reliable.

2.1.1. Supervised Max Operation (SuMax)

A popular ensemble margin function was introduced by Schapire et al. [36] and has been used in data importance evaluation [5]. This ensemble margin is defined as
margin SuMax ( x , y ) = 1 T v ( x , y ) max c y v ( x , c )
A positive value of margin SuMax ( x , y ) means that this instance is correctly classified by the set of T classifiers when using a majority vote. A negative value indicates misclassification. When there is a class c such that v ( x , c ) equals to T, margin ( x , y ) = 1 or margin ( x , y ) = 1 depending on whether c = y or not. Otherwise, the range of margin ( x , y ) is ( 1 , 1 ) .
The SuMax-based noise detection metric is defined by Equation (2).
Λ SuMax ( x , y ) = | margin SuMax ( x , y ) | = 1 T v ( x , y ) max c y v ( x , c )

2.1.2. Supervised Sum Operation (SuSum)

The margin of a sample is also obtained by the difference between the fraction of classifiers voting correctly and incorrectly [37]. Unlike the previous definition, in a multiclass context, a negative value of the margin does not necessarily indicate misclassification. This definition bears some resemblance with the definition of an edge in [34]: Given an ensemble classifier and an instance, the edge is the sum of the weights associated to classifiers predicting a wrong label.
The SuSum-based noise detection metric is defined by Equation (3).
Λ SuSum ( x , y ) = | margin SuSum ( x , y ) | = 1 T v ( x , y ) c y v ( x , c )

2.1.3. Unsupervised Max Operation (UnMax)

In [23], the authors proposed a new margin definition that is more robust to label noise. It is an unsupervised version of Schapire’s method and defined in Equation (4).
Λ UnMax ( x ) = margin UnMax ( x ) = 1 T v ( x , ζ ( x ) ) max c ζ ( x ) v ( x , c )
where ζ ( x ) is the predicted class of the ensemble classifier for sample x : ζ ( x ) = arg max c v ( x , c ) .

2.1.4. Unsupervised Sum Operation (UnSum)

In our previous work [38], we proposed a new unsupervised data importance evaluation method. It is an unsupervised version of the SuSum (3) and is defined in Equation (5).
Λ UnSum ( x ) = margin UnSum ( x ) = 1 T v ( x , ζ ( x ) ) c ζ ( x ) v ( x , c )
According to the above presentations of the four metrics, the supervised margins need the true label of the mislabeled instances while the unsupervised margins are robust to the true class values. In addition, when compared with the max operation, the sum based methods tend to give the misclassified instances with higher noise weight values.

2.2. Label Noise Cleaning Method

The proposed label noise cleaning method can be used with any of the four noise detection metrics. The samples tagged as mislabeled are the λ N samples having the smallest metric values, with λ itself depending on whether the tagged samples are removed or corrected.

2.2.1. Label Noise Removal with ENDM

The pseudo-code of the ENDM based noise removal method is presented as Algorithm 1.
In the first step, Bagging is used to induce an ensemble classifier composed of pruned trees from the whole training set. Collect in S the misclassified samples. Based on predictions of base classifiers, the chosen metric is used to sort samples in S according to their metric value. Compute λ max defined as the ratio of the size of S to the size of S.
The second step is an iterative procedure. In this step, λ ranges from 0 to λ max in steps of 1 % . At each iteration, a new subset containing the correctly classified samples of S and the λ N -lowest sorted samples. Then, this obtained subset is used to learn a classifier (Bagging, AdaBoost or k-NN with  k = 1 ), and the accuracy of this classifier is measured on the validation set. The finally selected λ -value is the one yielding the highest accuracy of the validation set.
In the last step, a clean training set is defined with the selected λ -value as in the second step, and a noise-sensitive classifier, AdaBoost or k-NN, is, induced on this clean training set, and tested on the test set.
Algorithm 1 Label-noise removal with an adaptive ensemble method based on noise-detection metric
1:
Input:
2:
Training set S = { ( x 1 , y 1 ) , ( x 2 , y 2 , ) , , ( x N , y N ) } ;
3:
Validation set V;
4:
Noise-robust ensemble classifier algorithm A ;
5:
Noise-sensitive ensemble classifier algorithm B ;
6:
Choose a metric, Λ { Λ SuMax , Λ UnMax , Λ SuSum , Λ UnSum } ;
7:
Process:
8:
Train ζ according to A with S;
9:
Collect in set S all misclassified instances, S : = { ( x , y ) S | ζ ( x ) y } ;
10:
Compute the maximum value of λ , λ max : = | S | | S | ;
11:
Sort instances in S according to Λ in decreasing order;
12:
for λ =0: λ max do
13:
 Initiate clean set with the correctly labeled instances, S λ : = S S ;
14:
 Fill in S λ the λ N -lowest samples, S λ : = S λ { ( x i , y i ) | i λ N } ;
15:
 Train ζ λ according to B with S λ ;
16:
 Compute accuracy of ζ λ on V, a λ : = 1 | S λ | ( x , y ) S λ 1 y = ζ λ ( x )
17:
end for
18:
Select the optimal λ -value: λ ^ = arg max a λ ;
19:
Select the best filtered training set: S = S λ ^ .
20:
Output:
21:
The clean training set S .

2.2.2. Label Noise Correction with ENDM

The only difference with ENDM-based noise correction is in that tagged samples have their label corrected instead of being removed. Its pseudo-code is presented as Algorithm 2 and its description is also divided into three steps.
In the first step, the same technique is used to induce an ensemble classifier (Bagging with pruned trees), and the same misclassified samples are collected in S and sorted according to the metric chosen. The value λ max is the ratio which is used to control the number of the removed instances.
In the second step, λ ranges from 0 to λ max by step of 1 % . Then, the first λ N -highest sorted samples of S are tagged. This step is different in that instead of collecting the nontagged samples in a new subset, it is the whole training set that is considered and the labels of the S nontagged samples are changed into those predicted by the ensemble classifier. This modified training set is again used to learn a classifier (Bagging, AdaBoost or k-NN with k = 1 ), and the accuracy of this classifier is measured on the validation set. As the inducing sets have been modified, there is no reason that the selected λ -value yielding the highest accuracy should be the same.
The last step is the same, though the inducing set is different in size and label values: a noise-sensitive classifier, AdaBoost or k-NN, is induced on this modified training set and tested on the test set.
Algorithm 2 Label noise correction with an adaptive ensemble method based on noise-detection metric
1:
Input:
2:
Training set S = { ( x 1 , y 1 ) , ( x 2 , y 2 , ) , , ( x N , y N ) } ;
3:
Validation set V;
4:
Noise-robust ensemble classifier algorithm A ;
5:
Noise-sensitive ensemble classifier algorithm B ;
6:
Choose a metric, Λ { Λ SuMax , Λ UnMax , Λ SuSum , Λ UnSum } ;
7:
Process:
8:
Train ζ according to A with S;
9:
Collect in set S all misclassified instances, S : = { ( x , y ) S | ζ ( x ) y } ;
10:
Compute the maximum value of λ , λ max : = | S | | S | ;
11:
Sort instances in S according to Λ in decreasing order;
12:
for λ =0: λ max do
13:
 Initiate clean set with S, S λ : = S ;
14:
 Modify in S λ with A the λ N -highest samples, i λ N , y i : = A ( x i ) ;
15:
 Train ζ λ according to B with S λ ;
16:
 Compute accuracy of ζ λ on V, a λ : = 1 | S λ | ( x , y ) S λ 1 y = ζ λ ( x )
17:
end for
18:
Select the optimal λ -value, λ ^ : = arg max a λ ;
19:
Select the best filtered training set, S : = S λ ^ .
20:
Output:
21:
The clean training set S .

3. Experimental Results

3.1. Experiment Settings

As in [2,4,5,15,27] and actually following most of the literature addressing the noise label issue, artificial noise is introduced in the training set and the validation set, not in the test set. In all our experiments, 20 % of the training samples and 20 % of the validation samples are randomly selected and have their labels randomly modified to another label. For a fairer comparison, we included the validation data in the training data when the validation set was not necessary (e.g., no filtering, majority vote filters and consensus vote filters). As for the Bagging-induced ensemble classifier using the uncleaned training set, in all experiments, it is composed of exactly 200 pruned Classification and Regression Trees (CART) [39] as base classifiers.
To exemplify the proposed method, it is applied with noise removal on Statlog dataset with λ ranging from 0 up to λ max ( = 31 % ) by step of 1 % . Subsets are built by collecting the λ N -lowest values of the training set. AdaBoost is induced on each of those subsets. Figure 2 shows two curves. The lower is the accuracy measured on the validation set, of each induced AdaBoost classifier, as a function of λ . The upper is the accuracy measured on the test set of the same classifiers as a function of λ . As the test set is noise-free, it is no surprise that the test-set measured accuracy is significantly higher than the validation-set measured accuracy. Note that both curves have very similar shapes, showing the appropriateness of the proposed way of selecting λ .
A comparative analysis is conducted between the ENDM-based mislabeled data identification method and the homogeneous-ensemble-based majority vote method [15]. Both label noise removal and correction schemes are involved in the comparison.

3.2. Datasets

The experimentation is based on 15 public multiclass datasets from the UCI and KEEL machine learning repository [40]. Each dataset was divided into three parts: training set, validation set and test set. Those datasets are described in Table 1, where N u m . refers to the number of examples, Variables to the number of attributes (and their type) and Classes to the number of classes.

3.3. Comparison of ENDM Versus no Filtering

Table 2 and Table 3 show respectively the accuracy of AdaBoost and k-NN-classifiers induced using three different training sets: the training set is not modified (no filtering), the training set is ENDM-based filtered with noise removal and noise correction. On all 15 datasets using both learning techniques and regardless of the modality chosen (noise removal or noise correction), the ENDM technique is better performing than not using any filter with an average increase of 2.42 % . In comparison with not filtering, the ENDM-technique yields an increase in accuracy of 10 % on dataset Letter with AdaBoost and about 16 % with k-NN on dataset Optdigit. The ENDM noise-correction modality, be it with AdaBoost or k-NN, appears to be most often less performing than the noise removal modality; nonetheless, it remains better than not using any filter.

3.4. Comparison of ENDM Versus Other Ensemble-Vote-Based Noise Filter

Table 2 and Table 3 also show the accuracy of AdaBoost and k-NN classifiers, respectively, induced using different training sets: the training sets are majority-vote-based and consensus vote-based filtered with noise removal and noise correction, and the training set is ENDM-based filtered with noise removal and noise correction. As noted previously, the noise-correction modality of the majority-vote-based noise filtering technique is most often less performing than the noise-removal modality when using AdaBoost or k-NN. On 10 of the 15 datasets, using AdaBoost, and considering only the noise-removal modality, ENDM is more successful than the other ensemble-vote-based noise filtering techniques. On dataset Letter, the increase is of 9 % using AdaBoost and 25 % using k-NN. Both tables show that ENDM is more safe with respect to majority vote method. The majority-vote-based and consensus-vote-based methods tend to tag more instances as noisy. When the data removal is carried out, more useful samples are wasted. With respect to the majority vote filter, the best increase in accuracy is, respectively, over 9% and 25% with AdaBoost on dataset Letter.
To further analyze the performance of the proposed method, a nonparametric statistical test, the Friedman test, Refs. [41,42] is used. Table 4 and Table 5 have provided a summary of the mean ranks of all algorithms. To verify whether the proposed method performs better than the reference algorithms, the critical difference (CD) is adopted by the Bonferroni-Dunn post-hoc test. Figure 3 presents the results of post-hoc tests for comparative algorithms over all the multiclass datasets. According to the results of the Bonferroni Test, the proposed method presents a good performance in dealing with the class noise problem of the multiclass datasets. Furthermore, noise removal outperforms noise correction for all ensemble-based methods.

3.5. Comparing Different Noise Detection Metrics in ENDM

Table 6 and Table 7 also show the accuracy of AdaBoost and k-NN-classifiers, respectively, induced using twelve different ENDM-based filtered training sets with the noise-removal modality: three different classifiers (Bagging, AdaBoost, k-NN with k = 1 ) are used to select λ and four different metrics (SuMax, UnMax, SuSum, UnSum) yield four different ways of ordering samples. The histogram figures of the performances of the four different noise detection metrics in the proposed algorithm on the datasets Letter and Optdigits are shown in Figure 4 and Figure 5.
When comparing columns 1 and 2 or 3 and 4 from both tables, it appears that using supervised metrics (SuMax and SuSum) are most often more successful than using unsupervised metrics (UnMax and UnSum). When comparing columns 3 and 1 from both tables, it appears that using SuSum is more successful than SuMax quite often. This finding does not extend to the unsupervised metrics, as UnSum and UnMax yield similar performances. This may be explained by the lack of information available to unsupervised metrics.

3.6. Comparing Different Classifiers Used for λ -Selection in ENDM

Table 6 and Table 7 show the accuracy of AdaBoost and k-NN classifiers, respectively, induced using twelve different ENDM-based filtered training sets with the noise removal modality: four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost and k-NN with k = 1 ) are used to select λ . Table 8 and Table 9 show the accuracy of AdaBoost and k-NN, respectively, when both classifiers are combined with the proposed noise correction modality.
When comparing the accuracies yielded using the Bagging-selected λ -value with those yielded using AdaBoost and k-NN, it appears that Bagging is most often not the appropriate tool to select λ . For example, in Table 7, when compared with bagging, the AdaBoost/k-NN could increase the accuracy of over 11% on the Vehicle. Actually, Bagging is known to be more label-noise-robust than AdaBoost and k-NN when k = 1 , and λ is estimated as the value yielding the best performance when trained on a λ -dependent training set and tested on a validation set. Therefore, it makes sense to use noise-sensitive classifiers instead of noise-robust classifiers.
In Table 6, when comparing the AdaBoost-tested accuracies yielded using the AdaBoost-selected λ -value with those yielded using the k-NN-selected λ -value, AdaBoost seems more appropriate to select λ . Now, in Table 7, when comparing the k-NN-tested accuracies yielded using the AdaBoost-selected λ -value with those yielded using the k-NN-selected λ -value, k-NN seems more appropriate to select λ . Hence, when the classifier used on the clean training set is noise-sensitive, it seems sensible to use that same learning technique when selecting λ .

4. Conclusions

This paper has focused on cleaning training sets contaminated with label noise, a challenging issue in machine learning, especially when a noise-sensitive classifier is desired. In line with the literature, we have proposed a two-stage process called ENDM, where an induced ensemble classifier enables the measuring of label’s reliability of each training instance, and then the maximization of the accuracy of a second classifier tested on a validation provides an estimate of the number of samples that should be removed or corrected. When compared on 15 public datasets, with no cleaning, with the majority-vote-based filtering method, and with the consensus-vote-based filtering method, ENDM appears to perform significantly better.
In addition, experiments and discussion have provided some insights into how a label’s reliability should be measured, whether suspicious samples should be removed or have their labels modified and how the second classifier ought to be chosen.
Future work will investigate more realistic ways of introducing artificial label noise in the datasets. Imbalanced label-noisy datasets will also be considered as cleaning filters tend to be more discriminative against minority instances, being more difficult to classify.

Author Contributions

Conceptualization, W.F.; methodology, W.F.; validation, W.F.; formal analysis, W.F. and G.D.; investigation, W.F. and G.D.; data curation, W.F.; writing–original draft preparation, W.F.; writing–review and editing, W.F., Y.Q. and G.D.; supervision, W.F. and Y.Q.; funding acquisition, W.F. and Y.Q. All authors have read and agreed to the published version of the manuscript.

Funding

This work is supported by the National Natural Science Foundation of China (61772397, 12005169), National Key R&D Program of China (2016YFE0200400), the Open Research Fund of Key Laboratory of Digital Earth Science (2019LDE005), and science and technology innovation team of Shaanxi Province (2019TD-002).

Acknowledgments

The authors would like to thank Samia Boukir from Bordeaux INP for the suggestion of the comparison of the four margin functions.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Frenay, B.; Verleysen, M. Classification in the Presence of Label Noise: A Survey. IEEE Trans. Neural Netw. Learn. Syst. 2014, 25, 845–869. [Google Scholar] [CrossRef] [PubMed]
  2. Zhu, X.; Wu, X. Class Noise vs. Attribute Noise: A Quantitative Study. Artif. Intell. Rev. 2004, 22, 177–210. [Google Scholar] [CrossRef]
  3. Gamberger, D.; Lavrac, N.; Dzeroski, S. Noise detection and elimination in preprocessing: Experiments in medical domains. Appl. Artif. Intell. 2000, 14, 205–223. [Google Scholar] [CrossRef]
  4. Brodley, C.E.; Friedl, M.A. Identifying Mislabeled Training Data. J. Artif. Intell. Res. 1999, 11, 131–167. [Google Scholar] [CrossRef]
  5. Feng, W. Investigation of Training Data Issues in Ensemble Classification Based on Margin Concept. Application to Land Cover Mapping. Ph.D. Thesis, University of Bordeaux 3, Bordeaux, France, 2017. [Google Scholar]
  6. Quan, Y.; Zhong, X.; Feng, W.; Dauphin, G.; Gao, L.; Xing, M. A Novel Feature Extension Method for the Forest Disaster Monitoring Using Multispectral Data. Remote Sens. 2020, 12, 2261. [Google Scholar] [CrossRef]
  7. Quan, Y.; Tong, Y.; Feng, W.; Dauphin, G.; Huang, W.; Xing, M. A Novel Image Fusion Method of Multi-Spectral and SAR Images for Land Cover Classification. Remote Sens. 2020, 12, 3801. [Google Scholar] [CrossRef]
  8. Feng, W.; Dauphin, G.; Huang, W.; Quan, Y.; Liao, W. New margin-based subsampling iterative technique in modified random forests for classification. KnowledgeBased Systems 2019, 182. [Google Scholar] [CrossRef]
  9. Feng, W.; Dauphin, G.; Huang, W.; Quan, Y.; Bao, W.; Wu, M.; Li, Q. Dynamic synthetic minority over-sampling technique based rotation forest for the classification of imbalanced hyperspectral data. IEEE J. Sel. Top. Appl. Earth Obs. Remote. Sens. 2019, 12, 2159–2169. [Google Scholar] [CrossRef]
  10. Feng, W.; Huang, W.; Bao, W. Imbalanced Hyperspectral Image Classification With an Adaptive Ensemble Method Based on SMOTE and Rotation Forest With Differentiated Sampling Rates. IEEE Geosci. Remote. Sens. Lett. 2019, 16, 1879–1883. [Google Scholar] [CrossRef]
  11. Yuan, W.; Guan, D.; Ma, T.; Khattak, A.M. Classification with class noises through probabilistic sampling. Inf. Fusion 2018, 41, 57–67. [Google Scholar] [CrossRef]
  12. Feng, W.; Bao, W. Weight-Based Rotation Forest for Hyperspectral Image Classification. IEEE Geosci. Remote Sens. Lett. 2017, 14, 2167–2171. [Google Scholar] [CrossRef]
  13. Feng, W.; Huang, W.; Ye, H.; Zhao, L. Synthetic Minority Over-Sampling Technique Based Rotation Forest for the Classification of Unbalanced Hyperspectral Data. In Proceedings of the IEEE International Geoscience and Remote Sensing Symposium, Valencia, Spain, 22–27 July 2018; pp. 2651–2654. [Google Scholar]
  14. Sabzevari, G.M.M.M.; Suarez, A. A two-stage ensemble method for the detection of class-label noise. Neurocomputing 2018, 275, 2374–2383. [Google Scholar] [CrossRef]
  15. Verbaeten, S.; Assche, A. Ensemble Methods for Noise Elimination in Classification Problems. In International Workshop Multiple Classifier Systems; Springer: Berlin/Heidelberg, Germany, 2003; Volume 2709, pp. 317–325. [Google Scholar]
  16. Li, Q.; Feng, W.; Quan, Y. Trend and forecasting of the COVID-19 outbreak in China. J. Infect. 2020, 80, 469–496. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  17. Quinlan, J.R. Induction of Decision Trees. Mach. Learn. 1986, 1, 81–106. [Google Scholar] [CrossRef] [Green Version]
  18. John, G. Robust Decision Trees: Removing Outliers from Databases. In Proceedings of the First International Conference on Knowledge Discovery and Data Mining, Montreal, QC, Canada, 20–21 August 1995; pp. 174–179. [Google Scholar]
  19. Breiman, L. Bias, Variance, and Arcing Classifiers; Technical Report 460; Statistics Department, University of California: Berkeley, CA, USA, 1996. [Google Scholar]
  20. Vapnik, V. The Nature of Statistical Learning Theory; Springer: New York, NY, USA, 1995. [Google Scholar]
  21. Freund, Y.; Schapire, R. Experiments with a New Boosting Algorithm. In Proceedings of the ICML’96: 13th International Conference on Machine Learning, Bari, Italy, 3–6 July 1996; pp. 148–156. [Google Scholar]
  22. Duda, R.; Hart, P.; Stork, D. Pattern Classification, 2nd ed.; John Wiley & Sons: Hoboken, NJ, USA, 2001. [Google Scholar]
  23. Guo, L.; Boukir, S. Ensemble margin framework for image classification. In Proceedings of the 2014 IEEE International Conference on Image Processing (ICIP), Paris, France, 27–30 October 2014; pp. 4231–4235. [Google Scholar]
  24. Teng, C. Correcting Noisy Data. In Proceedings of the Sixteenth International Conference on Machine Learning, Bled, Slovenia, 27–30 June 1999; pp. 239–248. [Google Scholar]
  25. Feng, W.; Boukir, S.; Guo, L. Identification and correction of mislabeled training data for land cover classification based on ensemble margin. In Proceedings of the IEEE International, Geoscience and Remote Sensing Symposium (IGARSS), Milan, Italy, 26–31 July 2015; pp. 4991–4994. [Google Scholar] [CrossRef]
  26. Pechenizkiy, M.; Tsymbal, A.; Puuronen, S.; Pechenizkiy, O. Class Noise and Supervised Learning in Medical Domains: The Effect of Feature Extraction. In Proceedings of the 19th IEEE International Symposium on Computer-Based Medical Systems, Salt Lake City, UT, USA, 22–23 June 2006; pp. 708–713. [Google Scholar]
  27. Sluban, B.; Gamberger, D.; Lavrac, N. Ensemble-based noise detection: Noise ranking and visual performance evaluation. Data Min. Knowl. Discov. 2013, 28, 265–303. [Google Scholar] [CrossRef]
  28. Zhu, X.Q.; Wu, X.D.; Chen, Q.J. Eliminating class noise in large datasets. In Proceeding of the International Conference on Machine Learning ( ICML2003), Washington, DC, USA, 21–24 August 2003; pp. 920–927. [Google Scholar]
  29. Khoshgoftaar, T.M.; Zhong, S.; Joshi, V. Enhancing Software Quality Estimation Using Ensemble-classifier Based Noise Filtering. Intell. Data Anal. 2005, 9, 3–27. [Google Scholar] [CrossRef]
  30. Guyon, I.; Matic, N.; Vapnik, V. Advances in Knowledge Discovery and Data Mining; Chapter Discovering Informative Patterns and Data Cleaning; American Association for Artificial Intelligence: Menlo Park, CA, USA, 1996; pp. 181–203. [Google Scholar]
  31. Quinlan, J.R. C4.5: Programs for Machine Learning; Morgan Kaufmann Publishers Inc.: San Francisco, CA, USA, 1993. [Google Scholar]
  32. Luengo, J.; Shim, S.; Alshomrani, S.; Altalhi, A.; Herrera, F. CNC-NOS: Class noise cleaning by ensemble filtering and noise scoring. Knowl.-Based Syst. 2018, 140, 27–49. [Google Scholar] [CrossRef]
  33. Karmaker, A.; Kwek, S. A boosting approach to remove class label noise. In Proceedings of the Fifth International Conference on Hybrid Intelligent Systems, Rio de Janeiro, Brazil, 6–9 November 2005; Volume 3, pp. 169–177. [Google Scholar] [CrossRef]
  34. Breiman, L. Arcing the Edge; Technical Report 486; Department of Statistics, University of California: Berkeley, CA, USA, 1997. [Google Scholar]
  35. Wheway, V. Using Boosting to Detect Noisy Data. In Advances in Artificial Intelligence. Pacific Rim International Conference on Artificial Intelligence 2000 Workshop Reader; Kowalczyk, R., Loke, S., Reed, N.E., Williams, G., Eds.; Springer: Berlin/Heidelberg, Germany, 2001; Volume 2112, pp. 123–130. [Google Scholar]
  36. Schapire, R.E.; Freund, Y.; Bartlett, P.; Lee, W.S. Boosting the Margin: A New Explanation for the Effectiveness of Voting Methods. Ann. Stat. 1998, 26, 1651–2080. [Google Scholar] [CrossRef]
  37. Kapp, M.; Sabourin, R.; Maupin, P. An empirical study on diversity measures and margin theory for ensembles of classifiers. In Proceedings of the 10th International Conference on Information Fusion, Québec City, QC, Canada, 9–12 July 2007; pp. 1–8. [Google Scholar]
  38. Feng, W.; Huang, W.; Ren, J. Class Imbalance Ensemble Learning Based on the Margin Theory. Appl. Sci. 2018, 8, 815. [Google Scholar] [CrossRef] [Green Version]
  39. Breiman, L.; Friedman, J.; Olshen, R.; Stone, C. Classification and Regression Trees; Wadsworth and Brooks: Monterey, CA, USA, 1984. [Google Scholar]
  40. Asuncion, A.; Newman, D. UCI Machine Learning Repository. 2007. Available online: http://archive.ics.uci.edu/ml/index.php (accessed on 24 November 2020).
  41. Demsar, J. Statistical comparisons of classifiers over multiple data sets. J. Mach. Learn. Res. 2006, 7, 1–30. [Google Scholar]
  42. Garcia, S.; Herrera, F. An Extension on “Statistical Comparisons of Classifiers over Multiple Data Sets” for all Pairwise Comparisons. J. Mach. Learn. Res. 2008, 9, 2677–2694. [Google Scholar]
Figure 1. Flowchart of label noise cleaning with an adaptive ensemble method based on a noise detection metric.
Figure 1. Flowchart of label noise cleaning with an adaptive ensemble method based on a noise detection metric.
Sensors 20 06718 g001
Figure 2. Classification accuracy of AdaBoost on dataset Statlog’s validation set (20% randomly selected of its labels are randomly modified) and test set (no labels are modified) as a function of λ (ratio of tagged labels).
Figure 2. Classification accuracy of AdaBoost on dataset Statlog’s validation set (20% randomly selected of its labels are randomly modified) and test set (no labels are modified) as a function of λ (ratio of tagged labels).
Sensors 20 06718 g002
Figure 3. Bonferroni-Dunn (95% confidence level) for the comparative methods on all data sets.
Figure 3. Bonferroni-Dunn (95% confidence level) for the comparative methods on all data sets.
Sensors 20 06718 g003
Figure 4. Evaluation of the Overall Accuracy Letter according to the ensemble size, T.
Figure 4. Evaluation of the Overall Accuracy Letter according to the ensemble size, T.
Sensors 20 06718 g004
Figure 5. Evaluation of the Overall Accuracy on Optdigits according to the ensemble size, T.
Figure 5. Evaluation of the Overall Accuracy on Optdigits according to the ensemble size, T.
Sensors 20 06718 g005
Table 1. Data sets.
Table 1. Data sets.
Data SetTraining Set Num.Validation Set Num.Test Set Num.VariablesClasses
Abalone1500750150083
ForestTypes200100200274
Glass804080106
Hayes-roth64326433
Letter5000250050001626
Optdigits100050010006410
Penbased4402204401510
Pendigit2000100020001610
Segment800400800197
Statlog200010002000366
Texture2000100020004011
Vehicle200100200184
Waveform200010002000213
Wine713572123
Winequalityred600300600116
Table 2. Accuracy of the AdaBoost-classifier induced using 15 different training sets: three filtering techniques (no filter, majority-vote and ENDM) and two modalities (noise removal and noise correction). The best results are marked in bold.
Table 2. Accuracy of the AdaBoost-classifier induced using 15 different training sets: three filtering techniques (no filter, majority-vote and ENDM) and two modalities (noise removal and noise correction). The best results are marked in bold.
DataNo FilterLabel Noise RemovalLabel Noise Correction
Majority
Vote
Consensus
Vote
ENDMMajority
Vote
Consensus
Vote
ENDM
Abalone53.8553.9254.2754.6454.1954.3654.61
ForestTypes84.5084.4084.7084.8384.5083.4083.20
Glass98.0097.5098.2597.9297.5097.7596.50
Hayes-roth65.0064.3864.0659.3864.0665.3160.94
Letter46.7247.8347.9656.8845.5945.2250.88
Optdigits89.3290.8488.9894.1487.9888.7893.23
Penbased90.0593.0590.3691.8992.4590.0092.23
Pendigit90.3492.9591.7395.4089.5690.8093.64
Segment92.1291.1393.7394.9091.1193.4794.41
Statlog83.3885.6886.2788.7583.6686.0088.15
Texture86.3189.5288.1194.0385.8387.4391.42
Vehicle72.2073.7073.2073.0074.3071.8073.80
Waveform81.4479.0981.5382.9777.0781.7082.41
Wine90.8392.7889.1791.6793.3391.1193.89
Winequalityred60.9060.6760.7060.8360.6061.4760.30
Average79.0079.8379.5381.4278.7879.2480.64
Table 3. Accuracy of k-NN-classifier induced using 15 different training sets: three filtering techniques (no filter, majority-vote and ENDM) and two modalities (noise removal and noise correction). The best results are marked in bold.
Table 3. Accuracy of k-NN-classifier induced using 15 different training sets: three filtering techniques (no filter, majority-vote and ENDM) and two modalities (noise removal and noise correction). The best results are marked in bold.
DataNo FilterLabel Noise RemovalLabel Noise Correction
Majority
Vote
Consensus
Vote
ENDMMajority
Vote
Consensus
Vote
ENDM
Abalone45.0753.5349.2751.5353.4049.4752.33
ForestTypes65.0078.0065.0077.5080.0065.0076.00
Glass63.7573.7563.7570.0076.2563.7572.50
Hayes-roth45.3153.1237.5046.8857.8140.6251.56
Letter74.6259.0875.0285.1263.2074.7280.44
Optdigits77.9093.3079.2093.1088.7079.8090.40
Penbased80.2393.4180.4594.7792.5080.9193.18
Pendigit79.7595.0585.4596.3089.8085.8094.15
Segment81.5490.3086.5093.3089.1286.3893.02
Statlog73.3584.9583.1087.1581.4083.2085.80
Texture80.2194.4287.1095.5187.3286.9093.24
Vehicle59.0066.5059.0071.5066.5059.0067.50
Waveform62.7578.4064.8077.4575.2065.5575.70
Wine79.1794.4479.1788.8993.0679.1788.89
Winequalityred49.6758.6748.3357.3361.0048.0058.17
Average67.8277.7969.5879.0977.0269.8878.19
Table 4. Accuracy rank of AdaBoost-classifier on 15 different training sets using no filter, majority-vote, consensus-vote and ENDM) for both noise removal and noise correction.
Table 4. Accuracy rank of AdaBoost-classifier on 15 different training sets using no filter, majority-vote, consensus-vote and ENDM) for both noise removal and noise correction.
DataNo FilterLabel Noise RemovalLabel Noise Correction
Majority
Vote
Consensus
Vote
ENDMMajority
Vote
Consensus
Vote
ENDM
Abalone7641532
ForestTypes3521367
Glass2513547
Hayes-roth2347416
Letter5431672
Optdigits4351762
Penbased6154273
Pendigit6341752
Segment5631742
Statlog7531642
Texture6341752
Vehicle6345172
Waveform5641732
Wine6374251
Winequalityred2543617
Average rank4.804.073.802.335.004.533.27
Table 5. Accuracy rank of k-NN-classifier on 15 different training sets using no filter, majority-vote, consensus-vote and ENDM) for both noise removal and noise correction.
Table 5. Accuracy rank of k-NN-classifier on 15 different training sets using no filter, majority-vote, consensus-vote and ENDM) for both noise removal and noise correction.
DataNo FilterLabel Noise RemovalLabel Noise Correction
Majority
Vote
Consensus
Vote
ENDMMajority
Vote
Consensus
Vote
ENDM
Abalone7164253
ForestTypes5253154
Glass5254153
Hayes-roth5274163
Letter5731642
Optdigits7162453
Penbased7261453
Pendigit7261453
Segment7351462
Statlog7351642
Texture7251463
Vehicle5351352
Waveform7162453
Wine5153253
Winequalityred5264173
Average rank6.072.275.402.203.135.202.80
Table 6. Accuracy of the AdaBoost classifier trained on ENDM-based filtered training set with the noise-removal modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers applied on the validation dataset (Bagging, AdaBoost, k-NN with k = 1 ). The values in brackets are the detected noise ratios. The best results are marked in bold.
Table 6. Accuracy of the AdaBoost classifier trained on ENDM-based filtered training set with the noise-removal modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers applied on the validation dataset (Bagging, AdaBoost, k-NN with k = 1 ). The values in brackets are the detected noise ratios. The best results are marked in bold.
SuMaxUnMaxSuSumUnSum
LetterBagging48.13 (12%)52.83 (30%)53.08 (24%)49.60 (28%)
AdaBoost52.04 (22%)49.60 (24%)56.88 (30%)50.54 (26%)
k-NN ( k = 1 )51.72 (21%)46.79 (16%)51.03 (16%)49.35 (7%)
OptdigitsBagging93.00 (17%)90.71 (12%)90.65 (10%)93.57 (18%)
AdaBoost93.43 (15%)93.15 (22%)94.14 (20%)93.23 (20%)
k-NN ( k = 1 )93.45 (22%)92.13 (23%)93.10 (21%)91.97 (25%)
PendigitBagging91.23 (6%)91.25 (5%)94.98 (21%)91.41 (7%)
AdaBoost95.27 (20%)94.24 (23%)95.40 (18%)93.87 (25%)
k-NN ( k = 1 )94.90 (20%)93.90 (25%)94.70 (22%)92.93 (22%)
StatlogBagging86.50 (10%)86.44 (9%)87.97 (22%)86.46 (10%)
AdaBoost88.75 (22%)86.68 (13%)88.66 (20%)86.98 (14%)
k-NN ( k = 1 )88.66 (22%)86.90 (29%)87.65 (26%)85.98 (30%)
VehicleBagging72.10 (14%)72.90 (6%)70.35 (8%)72.60 (7%)
AdaBoost72.30 (20%)72.05 (17%)72.05 (18%)73.00 (13%)
k-NN ( k = 1 )72.80 (6%)72.25 (10%)70.85 (8%)72.15 (20%)
Table 7. Accuracy of the k-NN ( k = 1 ) classifier trained on ENDM-based filtered training set with the noise-removal modality and four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, k-NN with k = 1 ) applied on the validation dataset. The values in brackets are the detected noise ratios. The best results are marked in bold.
Table 7. Accuracy of the k-NN ( k = 1 ) classifier trained on ENDM-based filtered training set with the noise-removal modality and four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, k-NN with k = 1 ) applied on the validation dataset. The values in brackets are the detected noise ratios. The best results are marked in bold.
SuMaxUnMaxSuSumUnSum
LetterBagging79.32 (14%)78.22 (18%)80.88 (30%)76.64 (6%)
AdaBoost77.68 (35%)73.52 (35%)79.00 (35%)76.52 (5%)
k-NN79.94 (23%)78.18 (13%)85.12 (16%)77.60 (8%)
OptdigitsBagging90.60 (17%)85.30 (10%)91.90 (20%)87.30(14%)
AdaBoost90.30 (18%)88.40 (15%)92.70 (24%)89.10 (19%)
k-NN93.00 (25%)92.90 (25%)93.10 (23%)93.00 (25%)
PendigitBagging87.40 (7%)89.15 (9%)96.05 (23%)87.40(7%)
AdaBoost95.90 (21%)95.80 (22%)96.25 (20%)95.20 (24%)
k-NN96.30 (22%)95.90 (25%)95.85 (19%)94.20 (20%)
StatlogBagging84.20 (13%)81.00 (9%)86.55 (22%)83.60 (12%)
AdaBoost86.80 (23%)84.90 (15%)85.95 (18%)85.90 (23%)
k-NN87.10 (22%)86.40 (25%)87.15 (23%)86.85 (29%)
VehicleBagging59.50 (2%)60.00 (2%)59.00 (2%)59.00 (2%)
AdaBoost70.00 (14%)65.50 (12%)71.50 (22%)67.50 (14%)
k-NN63.00 (4%)64.00 (9%)70.00 (17%)66.00 (13%)
Table 8. Accuracy of the AdaBoost classifier trained on the ENDM-based filtered training set with the noise-correction modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, and k-NN with k = 1 ). The values in brackets are the detected noise ratio. The best results are marked in bold.
Table 8. Accuracy of the AdaBoost classifier trained on the ENDM-based filtered training set with the noise-correction modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, and k-NN with k = 1 ). The values in brackets are the detected noise ratio. The best results are marked in bold.
SuMaxUnMaxSuSumUnSum
LetterBagging50.94 (1%)50.85 (1%)46.02 (0%)50.88(1%)
AdaBoost50.44 (1%)50.44 (1%)48.40 (0%)50.32 (1%)
k-NN43.56 (9%)46.11 (7%)41.81 (15%)44.00 (8%)
OptdigitsBagging89.80 (0%)90.10 (0%)89.87 (0%)89.80 (0%)
AdaBoost93.23 (16%)92.30 (15%)92.21 (18%)91.33 (17%)
k-NN92.36 (17%)92.73 (16%)92.17 (19%)90.51 (22%)
PendigitBagging90.89 (6%)90.76 (3%)90.04 (0%)91.05 (6%)
AdaBoost93.57 (19%)91.84 (16%)93.64 (18%)91.57 (12%)
k-NN92.11 (15%)91.00 (14%)93.08 (18%)91.11 (14%)
StatlogBagging86.48 (14%)86.02 (16%)84.83 (0%)86.50 (12%)
AdaBoost87.80 (20%)86.39 (9%)88.15 (19%)86.38 (13%)
k-NN86.58 (18%)86.16 (16%)86.92 (23%)86.24 (16%)
VehicleBagging73.90 (1%)73.75 (1%)73.50 (0%)72.95 (0%)
AdaBoost73.85 (17%)72.00 (20%)73.55 (17%)72.80 (23%)
k-NN73.85 (11%)72.90 (2%)73.05 (8%)72.95 (2%)
Table 9. Accuracy of the k-NN classifier trained on the ENDM-based filtered training set with the noise correction modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, and k-NN with k = 1 ). The values in brackets are the detected noise ratio. The best results are marked in bold.
Table 9. Accuracy of the k-NN classifier trained on the ENDM-based filtered training set with the noise correction modality, four different metrics (SuMax, UnMax, SuSum, UnSum) and three different classifiers (Bagging, AdaBoost, and k-NN with k = 1 ). The values in brackets are the detected noise ratio. The best results are marked in bold.
SuMaxUnMaxSuSumUnSum
LetterBagging74.10 (1%)73.96 (1%)73.02 (0%)74.94 (2%)
AdaBoost73.74 (1%)73.74 (1%)72.86 (0%)73.76 (1%)
k-NN76.44 (11%)75.72 (4%)80.44 (15%)75.98 (5%)
OptdigitsBagging76.60 (0%)76.60 (0%)78.80 (2%)76.60 (0%)
AdaBoost88.90 (15%)89.30 (17%)90.10 (19%)88.00 (17%)
k-NN89.10 (16%)89.20 (17%)90.40 (20%)88.00 (20%)
PendigitBagging83.55 (3%)84.25 (4%)79.90 (0%)83.55 (3%)
AdaBoost93.15 (21%)88.80 (9%)94.15 (19%)91.85 (13%)
k-NN92.60 (15%)91.75 (15%)93.65 (18%)92.05 (16%)
StatlogBagging80.30 (8%)84.55 (16%)73.70 (1%)82.20 (10%)
AdaBoost83.40 (11%)82.40 (10%)85.75 (18%)83.80 (12%)
k-NN85.05 (18%)84.45 (16%)85.80 (19%)84.70 (16%)
VehicleBagging63.00 (2%)63.00 (2%)60.00 (1%)62.00 (1%)
AdaBoost65.50 (15%)65.50 (10%)67.50 (20%)66.00 (15%)
k-NN64.00 (12%)63.50 (8%)64.50 (6%)61.50 (2%)
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Feng, W.; Quan, Y.; Dauphin, G. Label Noise Cleaning with an Adaptive Ensemble Method Based on Noise Detection Metric. Sensors 2020, 20, 6718. https://doi.org/10.3390/s20236718

AMA Style

Feng W, Quan Y, Dauphin G. Label Noise Cleaning with an Adaptive Ensemble Method Based on Noise Detection Metric. Sensors. 2020; 20(23):6718. https://doi.org/10.3390/s20236718

Chicago/Turabian Style

Feng, Wei, Yinghui Quan, and Gabriel Dauphin. 2020. "Label Noise Cleaning with an Adaptive Ensemble Method Based on Noise Detection Metric" Sensors 20, no. 23: 6718. https://doi.org/10.3390/s20236718

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop