Next Article in Journal
Evolving the Controller of Automated Steering of a Car in Slippery Road Conditions
Previous Article in Journal
Fractional-Order Closed-Loop Model Reference Adaptive Control for Anesthesia
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Ensemble Extreme Learning Machine for Data Stream Classification

1
School of Computer Science and Technology, Faculty of Electronic Information and Electrical Engineering, Dalian University of Technology, Dalian 116024, China
2
School of Innovation and Entrepreneurship, Dalian University of Technology, Dalian 116024, China
*
Author to whom correspondence should be addressed.
Algorithms 2018, 11(7), 107; https://doi.org/10.3390/a11070107
Submission received: 14 June 2018 / Revised: 29 June 2018 / Accepted: 11 July 2018 / Published: 17 July 2018

Abstract

:
Extreme learning machine (ELM) is a single hidden layer feedforward neural network (SLFN). Because ELM has a fast speed for classification, it is widely applied in data stream classification tasks. In this paper, a new ensemble extreme learning machine is presented. Different from traditional ELM methods, a concept drift detection method is embedded; it uses online sequence learning strategy to handle gradual concept drift and uses updating classifier to deal with abrupt concept drift, so both gradual concept drift and abrupt concept drift can be detected in this paper. The experimental results showed the new ELM algorithm not only can improve the accuracy of classification result, but also can adapt to new concept in a short time.

1. Introduction

With the explosively growing Internet and rapid development of information society, many industries have generated a large number of data streams, such as medical diagnosis, online shopping, traffic flow detection and satellite remote sensing. Different from conventional static data, data streams often have the characteristics of infinite quantity, rapid arrival, and conceptual drift, which make data stream mining faces an enormous challenges [1,2,3]. Since data stream classification was put forward, it has attracted much attention from scholars and made many achievements [4,5,6,7,8,9]. Up to now, the achievements are divided into three groups: statistical analysis model, decision tree model and neural network model. In statistical analysis model, Brzezinski et al. proposed an online leaning algorithm called OAUE [10] which utilizes mean square error to determine the weight of the classification model. When the detection period is reached, the concept drift will be replaced by replacement strategy. Farid et al. proposed a weighted case ensemble classification algorithm [11], and clustering algorithm is introduced to detect concept drift. If a data point does not belong to any existing class, it is considered that the class corresponding to this data may be a new concept, and then is further confirmed by data statistics in nodes. Bifet et al. proposed an adaptive window algorithm called HWF-ADWIN [12]. It uses Hoeffding inequality [13] to divide the nodes with the attributes corresponding to the maximum and second largest information gain to train a classifier; when the accuracy of the classifier is significantly changed, concept drift will be thought to have happened. Xu et al. proposed a data stream classification method based on Kappa coefficient [14]; in the process of classification, the algorithm calculates the Kappa coefficients of each block, and detects the changes of concepts in data streams by using Kappa coefficients. When the concept of data stream is changing, the system will eliminate the classifiers which do not meet the requirements according to the existing knowledge. Compared with the contrast algorithm, this algorithm can not only obtain a higher accuracy, but also reduce the time cost to a certain extent, and get better results. Decision tree model is very common in data stream classification tasks and there have been many publications. Domingos and Hulten et al. proposed a series of algorithms based on Hoeffding tree called VFDT and CVFDT [15,16]; Wu and Li et al. proposed semi-random decision tree algorithms [17,18]; Brzezinski et al. proposed a red–black tree structure algorithm to improve the efficiency of finding and removing outdated nodes for imbalanced data stream classification [19]. Rutkowski et al. developed a McDiarmid Tree algorithm according to McDiarmid inequality and the threshold of the difference between the maximum information gain and the second large information gain is determined by the McDiarmid boundary [20]. With the heat of the neural network, many scholars apply neural network in data stream classification tasks. Aiming at imbalanced data stream classification [21], telecommunication fraud detection [22], spatiotemporal event streams [23] and so on, many algorithms have been proposed. However, statistical analysis model, decision tree model and neural network model need to repeatedly scan data classifiers and data several times, or there are many parameter needing to adjustment. Thus, the above drawbacks limit these models to be more widely used in data stream environment.
Extreme learning machine is a single hidden layer feedforward neural network; the input weights and biases of hidden layer are randomly generated and the output weights can be automatically determined by input data [24,25,26,27,28]. ELM does not need to adjust the parameters repeatedly and it has an obvious advantage in the speed of the training process comparing with the traditional neural networks [29], so it is very suitable for data stream classification tasks. Liang et al. proposed an ELM algorithm based on online sequential learning mechanism called OS-ELM [30], and it extends ELM to the field of data stream classification. After OS-ELM being proposed, many scholars have proposed a series of improved OS-ELM. Gu et al. proposed a timeliness online sequential extreme learning machine for timeliness problem [31]; it adopts the batch processing and weighting mechanism to make TOSELM have good stability and prediction ability. Shao et al. proposed a regularization extreme learning machine with online sequential learning called OS-RELM [32]. OS-RELM combines OS-ELM and RELM [33]; at the same time, the minimum error rate is guaranteed, and the norm of the minimum weight is obtained, so that OS-RELM can have good generalization performance. Zhao et al. proposed a FOS-ELM with forgetting mechanism for timeliness stock data [34]. In FOS-ELM, it only uses latest data to update model, so it can avoid the invalid data to participate in updating the weights of the output layer. Bilal et al. proposed an ensemble online sequential extreme learning machine for imbalanced classification [35]; each OS-ELM focuses on the minority class data and is trained with a balanced subset of the data stream. For distributed multi-agent system, Vanli et al. proposed a online nonlinear extreme learning machine [36]; it uses optimization method to minimize empirical risk and structural risk. Singh et al. applied OS-ELM in intrusion detection system [37]; before dealing with data, it introduces features selection to eliminate redundant or unrelated attributes.
The above OS-ELM and its developments provide a number of ways to solve the problem of data stream classification. However, most of them lack concept drift detection mechanism; they have a good performance for data stream without concept drift or concept changing slowly, but cannot cope with the rapid change of concept in data stream. In this paper, an ensemble extreme learning machine with concept drift detection (CELM) is proposed. CELM uses manifold learning to reduce the dimensions of data and introduces concept drift detection mechanism which effectively overcomes the shortcomings of OS-ELM. The contributions of this paper are as follows:
  • An ensemble extreme learning machine algorithm is presented. In the data stream environment, the performance of ensemble classifiers is better than that of single classifier [38], so CELM employs ensemble learning method and improves the performance of ELMs.
  • Because data stream classification is very demanding for real time and the high dimensions of data tend to reduce the efficiency of algorithm, CELM introduces a manifold learning method to reducing the dimension of data which reduces the time consumption of CELM.
  • Concept drift detection is incorporated into the training process of ELM classifiers. The change of data stream is divided into three categories: normal condition, warning level and concept drift. Different from the traditional ELMs, CELM not only can detect gradual concept drift, but also can handle abrupt concept drift.
The rest of this paper is organized as follows: Section 2 reviews the background knowledge of data stream classification and ELM. Section 3 states the details of ELM, and then elaborates the reducing dimension method of the manifold learning and the principles of CELM. In Section 4, CELM is compared with comparison algorithms and we discusses the experimental results. Finally, Section 5 concludes the research and gives future directions.

2. Background Knowledge

In this section, we give a brief introduction about data stream classification and extreme learning machine and explain their basic principles.

2.1. Data Stream Classification

Let , d t 1 , d t , d t + 1 , be a data stream generated by a system, and d t a datum at t moment; d t = x t 1 , x t 2 , , x t m , y t , where m is the features number of d t and y t is the class label. Data stream classification generally adopts a sliding window mechanism, and several data make up a dataset called data block and denoted B i , where B i = d 1 , d 2 , , d n and n is the size of data block. At every moment, only one or several data blocks are allowed to enter sliding window. After one data block is processed, a new data block can be loaded to sliding window.
Suppose that in Δ t time, if the error rate of classifier system is at a low level in the sliding window, it is said that the concept of data stream is stable in this period and P e r r o r b e s t ε 1 α , where error is the current error rate of classifier system, best is the classification error rate of optimal performance classifier for data stream and α is a significance level. Let the classification model of data stream be M, which is trained by the data blocks in sliding window at t moment; after Δ t time, the classification model changes to N. If M N , it means concept drift has happened in data stream. If Δ t is a short time, the concept drift is called abrupt concept drift; otherwise, it is called as gradual concept drift [14].

2.2. Extreme Learning Machine

Extreme learning machine is a single hidden layer feedforward neural network. The input weights and biases are randomly generated, while the output weights can be automatically determined. Compared with the traditional methods such as BP neural network [39], the speed of ELM is faster [40,41]. The structure of ELM is shown in Figure 1.
For N arbitrary distinct samples, x i , t i i = 1 N , x i = x i 1 , x i 2 , , x i n T R n , t i = t i 1 , t i 2 , , t i m T R m . If the activation function is g ( x ) with L hidden nodes, the output of ELM is as
j = 1 L β j g ( w j · x i + b j ) = o j , i = 1 , 2 , , N
where w j = w j 1 , w j 2 , , w j n T is the weights connecting the jth hidden node with the input nodes, β j = β j 1 , β j 2 , , β j m T is the weights connecting the jth hidden node with the output nodes, b j is the bias of the jth hidden nodes. According to the theory [24], ELM can approximate these N samples with zero error and i = 1 N o i t i = 0 . Thus, the output of ELM can be expressed compactly as
H β = T
where H is the output matrix of hidden layer and T is the output matrix of output layer. They are as:
H = g ( w 1 , b 1 , x 1 ) g ( w L , b L , x 1 ) g ( w 1 , b 1 , x N ) g ( w L , b L , x N ) N × L and T = t 1 T t N T N × m
The output weights matrix β can be estimated as
β ^ = H T
where H is the Moore–Penrose generalized inverse of the hidden layer output matrix H . It can be computed by orthogonal projection method, orthogonalization method and singular value composition (SVD) [42]. To improve the generalization performance of ELM, regularization is introduced and the optimization problem of ELM is as follows:
min 1 2 β 2 + C 1 2 i = 1 N ξ i s . t . h ( x i ) β = t i T ξ i T i = 1 , 2 , , N
where C is a penalty factor, and ξ i is the training error which is used to eliminate over-fitting. According to KKT conditions [26], if L < N , the β is as
β = ( I C + H T H ) 1 H T T
Thus, the output of ELM is as
f ( x ) = h ( x ) β = h ( x ) ( I C + H T H ) 1 H T T
If L N , the β is as
β = H T ( I C + H H T ) 1 T
Thus, the final output of ELM is
f ( x ) = h ( x ) β = h ( x ) H T ( I C + H H T ) 1 T
The classification label of ELM is as
l a b e l ( x ) = argmax i 1 , 2 , , m f i ( x )
where f ( x ) = f 1 ( x ) , f 2 ( x ) , , f m ( x ) .
From the above descriptions, the steps of ELM are summarized as follows (Algorithm 1) [24,25]:
Algorithm 1 ELM.
Input: a training data X = ( x i , y i ) | x i R n , y i R m ; the number of hidden nodes L; the activation function g ( · ) ;
Output: ELM classifier.
    Step 1: Randomly generate the input weights w j and biases b j , j = 1 , 2 , , L ;
    Step 2: Calculate the output matrix of hidden layer H for dataset X
    Step 3: Obtain the output weights β according to Equation (6) or Equation (8);

3. The Basic Principles of CELM

In this section, we introduce the dimension-reduction method which is used to reduce the dimension of the data at first, and then explain the details of concept drift detection mechanism and classification steps of CELM.

3.1. The Method of Dimensionality Reduction for Data Stream

Dimensionality reduction is important for data stream classification. It can reduce the dimension of the data and improve the efficiency of the algorithm. In this paper, LLE method [43] is used to handle data stream. Let a data block be B i = x 1 , x 2 , , x N , for a data point x i , i = 1 , 2 , , N , LLE (https://cs.nyu.edu/~roweis/lle/) finds k neighborhood points of x i to reconstruct x i . The objective function of the optimization problem is as follows:
min J ( w ) = i = 1 N x i j = 1 k w i j x j 2 2 s . t . j = 1 k w i j = 1
where w i j is the weight of the neighborhood sample x j . If x j is not the neighborhood of x i , w i j = 0 . From Equation (11), it follows:
J ( w ) = i = 1 N 1 · x i j = 1 k w i j x j 2 2 = i = 1 N j = 1 k w i j x i j = 1 k w i j x j 2 2 = i = 1 N j = 1 k w i j ( x i x j ) 2 2 = i = 1 N ( x i x j ) W i 2 2 = i = 1 N W i T ( x i x j ) T ( x i x j ) W i
where W i = w i 1 , w i 2 , , w i k T . Let Z i = ( x i x j ) T ( x i x j ) , so it will have
J ( w ) = i = 1 N W i T Z i W i and j = 1 k w i j = W i T 1 k = 1
where 1 k is a vector in which all elements are 1. The optimization function of Equation (13) can be expressed as
L = i = 1 N W i T Z i W i + λ ( W i T 1 k 1 ) L W i = 2 Z i W i + λ 1 k = 0
From Equations (13) and (14), it will obtain
W i = Z i 1 1 k 1 k T Z i 1 1 k
For B i = x 1 , x 2 , , x N , the projection of B i in low dimension space is y 1 , y 2 , , y N . The objection of dimension reduction is to make the following loss function is minimized.
min i = 1 N y i j = 1 k w i j y j 2 2 s . t . i = 1 N y i = 0 and 1 N i = 1 N y i y i T = I
Equation (16) can be changed as
J ( Y ) = i = 1 N y i j = 1 k w i j y j 2 2 = i = 1 N Y I i Y W i 2 2 = t r ( Y T ( I W ) T ( I W ) Y )
Let M = ( I W ) T ( I W ) , so the objective function of the optimization problem is
min J ( Y ) = t r ( Y T M Y ) s . t . Y T Y = N I
Construct the following Lagrange function
L ( Y ) = t r ( Y T M Y ) + λ ( Y T Y N I )
By solving the partial derivation of L ( Y ) , it will get
L Y = M Y λ Y = 0 M Y = λ Y
Equation (20) means Y is the eigenvectors of M . If it wants to get d-dimensional data, it only needs to find a matrix which is made up by d + 1 eigenvectors corresponding to the least d + 1 eigenvalues of the matrix M , and Y = y 2 , y 3 , , y d + 1 . The dimension-reduction algorithm of CELM is as follows (Algorithm 2).
Algorithm 2 Dimension-reduction of data stream.
Input: Data stream S , the size of data block B i : winsize, k and d;
Output: Y = y 1 , y 2 , , y d .
    while S N U L L do
        Get a data block B j = x 1 , x 2 , , x N with N samples from sliding window;
        Calculate W i , i = 1 , 2 , , N ;
        Calculate M = ( I W ) T ( I W ) ;
        Calculate d+1 eigenvectors of the matrix M ;
        Get the low dimensional matrix Y ;

3.2. The Data Stream Classification and Concept Drift Detection of CELM

Data stream is different from the traditional static data, concept drift is often happened, so concept drift detection must be included in the training process. For a data block B i , the error rate of classifiers is p i which is a random variable obeying the Bernoulli distribution, so the standard deviation is s i = p i ( 1 p i ) i where i is the number of samples [44,45]. In this paper, CELM utilizes p i and s i to detect concept drift. The change of data stream is divided into three types: stable, error level and concept drift.
If p i + s i p m i n + 2 s m i n and p i < ε , it suggests that the error rate of classifiers system is in a low level and the concept of data stream is stable where ε is a threshold. Thus, the classifiers are suitable for the classification task of the current data stream and they do not need to make any adjustment.
If p i + s i p m i n + 2 s m i n and p i < ε , it suggests that the error rate of classifiers system is still in a low level, but the performance of classifers has a big fluctuation, the classifiers will give a warning and CELM will use online sequence learning mechanism [30] to update each classifier. At the initial time, let the data block be B 0 = x i , t i i = 1 N 0 , so the output matrix of hidden layer H 0 and the initial target matrix of T 0 are
H 0 = g ( w 1 , b 1 , x 1 ) g ( w L , b L , x 1 ) g ( w 1 , b 1 , x N 0 ) g ( w L , b L , x N 0 ) N 0 × L and T 0 = t 1 T t N 0 T N 0 × m
The initial output weight of ELM β ( 0 ) is
β ( 0 ) = K 0 1 H 0 T T 0
where K 0 = I C + H T H and T 0 = t 1 , t 2 , , t N 0 T . After (k + 1)th data block coming into sliding window, the data block is B k + 1 = x i , t i i = j = 0 k N j + 1 j = 0 k + 1 N j . The output matrix of hidden layer H k + 1 is
H k + 1 = g ( w 1 , b 1 , x j = 0 k N j + 1 ) g ( w L , b L , x j = 0 k N j + 1 ) g ( w 1 , b 1 , x j = 0 k + 1 N j ) g ( w L , b L , x j = 0 k + 1 N j ) N k + 1 × L
T k + 1 = t 1 + j = 0 k N j T , , t j = 0 k + 1 N j T N k + 1 × m T
The K k + 1 and β ( k + 1 ) are updated as
K k + 1 = K k + H k + 1 T H k + 1
β ( k + 1 ) = β ( k ) + K k + 1 1 H k + 1 T ( T k + 1 H k + 1 β ( k ) )
when calculating the output weight matrix β , it needs to perform a matrix inversion, but the calculated amount of the pseudo inverse is very large, so Woodbury formula is often used to diminish the computation [37] and the formula is as
K k + 1 1 = ( K k + H k + 1 T H k + 1 ) 1 = K k 1 K k 1 H k + 1 T ( I + H k + 1 K k 1 H k + 1 T ) 1 H k + 1 K k 1
By the online sequential learning mechanism, when the change of concept in data stream is small, CELM can update classifiers to adapt to the change of concept which is also effective for gradual concept drift.
If p i + s i p m i n + 2 s m i n or p i ε , it indicates that the change of data stream is too large or the performance of classifiers is in low level. The classification model is not fit for the current data stream, so all classifiers must be deleted and retrain a series of classifiers. The steps of CELM are summarized in Algorithm 3.
Algorithm 3 CELM.
Input: Data stream S , the size of data block B i : winsize, k and d, ε , K classifiers;
Output: An ensemble classifiers system.
    while S N U L L do
        Get a data B i from sliding window;
        Use Algorithm 2 to descend dimension for B i ;
        if p i + s i < p m i n + 2 s m i n & & p i < ε then
            The data stream is stable and directly uses classifier to finish classification task;
        else if p i + s i p m i n + 2 s m i n & & p i < ε then
            Uses online learning mechanism to update classifiers as Equations (21)–(27);
        else if p i + s i p m i n + 2 s m i n | | p i ε then
            Concept drift has happened;
            Delete all classifiers and retrain each classifier as Algorithm 1;
From the steps of CELM, it is known that, when the change of data stream is small, CELM uses online sequential learning mechanism to update classifiers which ensures the classifiers can utilize the last model and do not need to be retrained again and again; in other words, the method also gives a way to handle gradual concept drift. In addition, the dimension-reduction algorithm which preprocesses data blocks and the advantages of ELM makes CELM keep a good performance and have a fast speed.

4. Experiments and Data Analysis

In the section, experiments and data analysis are executed to test the performance of CELM. OS-ELM [30], SEA [46], AE [47] and M_ID4 [48] are used as comparison algorithms. All algorithms were executed on MATLAB 2017a platform, windows 7 OS, Intel quad-core 3.30 GHz CPU and 8 G memory. There are 10 artificial and real datasets for experimental datasets. The base classifier of SEA, AE and M_ID4 is decision tree and the number of sub-classifiers is set to 5. For CELM, the parameter C = 1000, the neighbourhood k = 5 and the threshold ε = 0.3 . For M_ID4, the threshold θ = 0.01 and the decay factor b = 0.5. The activation function of CELM and OS-ELM is sigmoid.

4.1. Datasets

At first, we will give a brief introduction about datasets. All artificial datasets are generated from MOA platform [49]. In artificial datasets, we only give a explain about hyperplane dataset, the other description of datasets can be see from UCI website (http://archive.ics.uci.edu/ml/datasets.html) and help handbook. The basic information of datasets are shown in Table 1.
hyperplane is a gradual concept drift dataset. In a d-dimensional space, a hyperplane is defined as i = 1 d w i x i = w 0 , where x i 0 , 1 , w i 10 , 10 and w 0 = 1 2 i = 1 d w i . If i = 1 d w i x i w 0 , the point is remarked as positive; if i = 1 d w i x i < w 0 , the point is remarked as negative.

4.2. The Comparison Results of CELM and Comparison Algorithms on the Test Datasets

To test the performance of CELM and comparison algorithms, the algorithms are executed on 10 datasets. The test results are shown in Table 2 and Table 3.
Table 2 and Table 3 show that CELM gets best results on four datasets; SEA, AE and OS-ELM get the best results on two datasets; and M_ID4 gets only one best result. In addition, the average accuracy of CELM is also the best of all. For time consumption, OS-ELM is the least of all and CELM the second least, but the accuracies of CELM are much higher than OS-ELM. Thus, it can be concluded that the performance of CELM is better than the other algorithm in most conditions. On Ozone dataset, CELM and OS-ELM get the same highest accuracy because Ozone has no abrupt concept drift and CELM degenerates into OS-ELM; in other words, there will be no difference between CELM and OS-ELM when dataset has no abrupt concept drift.

4.3. The Effect of Sliding Window on the Performance of CELM

To test the effect of sliding window on the performance of CELM, this paper chooses different winsize values, and executes CELM and OS-ELM on the experimental datasets. The number of hidden nodes is 20 and d = 5. The test results are shown in Figure 2a–j.
In Figure 2a–j, the accuracies of CELM and OS-ELM are changing with different winsize values. On the voice, waveform, letter, occupancy and protein datasets, CELM is much better than OS-ELM; the classification performance of OS-ELM is at a low level because there are many abrupt concept drifts in those datasets. It suggests that OS-ELM is not fit for dealing with data stream with abrupt concept drift and CELM has an obvious advantage in handling data stream with abrupt concept drift. On the other datasets, the test results of OS-ELM is better than that of CELM. If analyzing the change of the curve, it is known that there is no big difference between OS-ELM and CELM in accuracy and both get good results because the change of concepts in those dataset is small. Therefore, it can be concluded that CELM can cope with gradual concept drift and abrupt concept drift, but OS-ELM can only face gradual concept drift; thus, CELM is better than OS-ELM.

4.4. The Effect of the Values of d on the Performance of CELM

To test the effect of d on the performance of CELM, this paper executes CELM with different values of k which is a parameter of Algorithm 2. The activation function of CELM is sigmoid; the size of sliding window is 90; and the number of hidden nodes is 30.
Table 4 is the dimension decrement of the datasets testing on CELM. From the result analysis of Table 2, it can be known that the performance of CELM is the best. CELM reduces the dimensions of most datasets. In other words, the dimensionality reduction methods of manifold learning in CELM is effective. Figure 3 presents the result of CELM testing on the experimental datasets with different d values. d is an important parameter for the dimension reduction algorithm which is presented as Algorithm 2. Data will lose more information if d is a small value and data will have many redundant features if d is a larger value. It is known that the performance of CELM will change when d value changes. The accuracy of CELM has a large fluctuation on voice, waveform, adult, letter, occupancy, hill and protein datasets and the accuracy of CELM has less fluctuation on the other datasets, as shown in Figure 2 and Table 5. It manifests d values can affect the effect of dimensionality reduction algorithm. In addition, it is obvious that the performance of CELM will be affected if the value of d is too large or too small, therefore the user needs to select a appropriate value for the manifold learning algorithm.

5. Conclusions

Data stream classification is a hot research topic in recent years. How to deal with the data stream with concept drift has a high value of practical application. A new ensemble extreme learning machine with concept drift detection (CELM) is presented in this paper. CELM applies manifold learning method to reduce the dimensions of data blocks and divides the changes of concepts in data stream into three types: stable, warning and concept drift. The algorithm can detect both gradual concept drift and abrupt concept drift by online sequential learning and concept drift detection mechanisms which expands the application scope of ELM. The experimental results also prove that the proposed algorithm is effective for data stream classification.
It is obvious that this algorithm still has some problems to be solved. The number of hidden nodes L and the parameter of the manifold learning algorithm d have a great impact on CELM. How to select appropriate values for those parameters will be a research direction for future works.

Author Contributions

R.Y., S.X. and L.F. conceived and designed the experiments; R.Y. and S.X. performed the experiments; R.Y., L.F. and S.X. analyzed the data; and R.Y. wrote the paper with contributions from all authors. All authors read and approved the submitted manuscript, agreed to be listed, and accepted this version for publication.

Funding

This research was funded by National Natural Science Fund of China (Nos. 61672130, 61602082, and 61370200), the Open Program of State Key Laboratory of Software Architecture (No. SKLSAOP1701), China Postdoctoral Science Foundation (No. 2015M581331), Foundation of LiaoNing Educational Committee (No. 201602151) and MOE Research Center for Online Education of China (No. 2016YB121).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Gedik, B.; Schneider, S.; Hirzel, M.; Wu, K.L. Elastic Scaling for Data Stream Processing. IEEE Trans. Parallel Distrib. Syst. 2014, 25, 1447–1463. [Google Scholar] [CrossRef] [Green Version]
  2. Krempl, G.; Last, M.; Lemaire, V.; Noack, T.; Shaker, A.; Sievi, S.; Spiliopoulou, M. Open challenges for data stream mining research. ACM SIGKDD Explor. Newsl. 2014, 16, 1–10. [Google Scholar] [CrossRef] [Green Version]
  3. Xu, S.; Wang, J. Classification Algorithm Combined with Unsupervised Learning for Data Stream. Pattern Recognit. Artif. Intell. 2016, 29, 665–672. [Google Scholar]
  4. Ramirez-Gallego, S.; Krawczyk, B.; Garcia, S.; Woźniak, M.; Herrera, F. A survey on data preprocessing for data stream mining: Current status and future directions. Neurocomputing 2017, 239, 39–57. [Google Scholar] [CrossRef]
  5. Sun, D.; Zhang, G.; Yang, S.; Zheng, W.; Khan, S.U.; Li, K. Re-Stream: Real-time and energy-efficient resource scheduling in big data stream computing environments. Inf. Sci. 2015, 319, 92–112. [Google Scholar] [CrossRef] [Green Version]
  6. Xu, S.; Wang, J. Dynamic extreme learning machine for data stream classification. Neurocomputing 2017, 238, 433–449. [Google Scholar] [CrossRef]
  7. Puthal, D.; Nepal, S.; Ranjan, R.; Chen, J. DLSeF: A Dynamic Key-Length-Based Efficient Real-Time Security Verification Model for Big Data Stream. ACM Trans. Embed. Comput. Syst. 2017, 16, 51. [Google Scholar] [CrossRef]
  8. Pan, S.; Wu, K.; Zhang, Y.; Li, X. Classifier ensemble for uncertain data stream classification. In Proceedings of the Pacific-Asia Conference on Advances in Knowledge Discovery and Data Mining, Hyderabat, India, 21–24 June 2010; pp. 488–495. [Google Scholar]
  9. Xu, S.; Wang, J. A Fast Incremental Extreme Learning Machine Algorithm for Data Streams Classification. Expert Syst. Appl. 2016, 65, 332–344. [Google Scholar] [CrossRef]
  10. Brzezinski, D.; Stefanowski, J. Combining block-based and online methods in learning ensembles from concept drifting data streams. Inf. Sci. 2014, 265, 50–67. [Google Scholar] [CrossRef]
  11. Farid, D.M.; Li, Z.; Hossain, A.; Rahman, C.M.; Strachan, R.; Sexton, G.; Dahal, K. An adaptive ensemble classifier for mining concept drifting data streams. Expert Syst. Appl. 2013, 40, 5895–5906. [Google Scholar] [CrossRef] [Green Version]
  12. Bifet, A. Adaptive learning from evolving data streams. In International Symposium on Intelligent Data Analysis: Advances in Intelligent Data Analysis VIII; Springer: Berlin/Heidelberg, Germany, 2009; pp. 249–260. [Google Scholar]
  13. Schmidt, J.P.; Siegel, A.; Srinivasan, A. Chernoff-Hoeffding Bounds for Applications with Limited Independence. SIAM J. Discret. Math. 1995, 8, 223–250. [Google Scholar] [CrossRef]
  14. Xu, S.; Wang, J. Data Stream Classification Algorithm Based on Kappa Coefficient. Comput. Sci. 2016, 43, 173–178. [Google Scholar]
  15. Domingos, P.M.; Hulten, G. Mining high-speed data streams. In Proceedings of the Sixth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Boston, MA, USA, 20–23 August 2000; pp. 71–80. [Google Scholar]
  16. Hulten, G.; Spencer, L.; Domingos, P.M. Mining time-changing data streams. In Proceedings of the Seventh ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, 26–29 August 2001; pp. 97–106. [Google Scholar]
  17. Wu, X.; Li, P.; Hu, X. Learning from concept drifting data streams with unlabeled data. Neurocomputing 2012, 92, 145–155. [Google Scholar] [CrossRef]
  18. Li, P.; Wu, X.; Hu, X.; Wang, H. Learning concept-drifting data streams with random ensemble decision trees. Neurocomputing 2015, 166, 68–83. [Google Scholar] [CrossRef]
  19. Brzezinski, D.; Stefanowski, J. Prequential AUC for classifier evaluation and drift detection in evolving data streams. In Proceedings of the 3rd International Conference on New Frontiers in Mining Complex Patterns (NFMCP’14), Nancy, France, 19 September 2014; pp. 87–101. [Google Scholar]
  20. Rutkowski, L.; Pietruczuk, L.; Duda, P.; Jaworski, M. Decision Trees for Mining Data Streams Based on the McDiarmid’s Bound. IEEE Trans. Knowl. Data Eng. 2013, 25, 1272–1279. [Google Scholar] [CrossRef]
  21. Ghazikhani, A.; Monsefi, R.; Yazdi, H.S. Online neural network model for non-stationary and imbalanced data stream classification. Int. J. Mach. Learn. Cybern. 2014, 5, 51–62. [Google Scholar] [CrossRef]
  22. Jain, V. Perspective analysis of telecommunication fraud detection using data stream analytics and neural network classification based data mining. Int. J. Inf. Technol. 2017, 9, 303–310. [Google Scholar] [CrossRef]
  23. Gao, M.; Yang, X.; Jain, R.; Ooi, B.C. Spatio-temporal event stream processing in multimedia communication systems. In Proceedings of the Scientific and Statistical Database Management, International Conference (SSDBM), Heidelberg, Germany, 30 June– 2 July 2010; pp. 602–620. [Google Scholar]
  24. Huang, G.B.; Zhu, Q.Y.; Siew, C.K. Extreme learning machine: Theory and applications. Neurocomputing 2006, 70, 489–501. [Google Scholar] [CrossRef] [Green Version]
  25. Huang, G.B.; Zhou, H.; Ding, X.; Zhang, R. Extreme learning machine for regression and multiclass classification. IEEE Trans. Syst. Man Cybern. B 2012, 42, 513–529. [Google Scholar] [CrossRef] [PubMed]
  26. Huang, G.B.; Zhu, Q.Y.; Siew, C.K. Extreme learning machine: A new learning scheme of feedforward neural networks. In Proceedings of the 2004 IEEE International Joint Conference on Neural Networks (IEEE Cat. No. 04CH37541), Budapest, Hungary, 25–29 July 2004; Volume 2, pp. 985–990. [Google Scholar]
  27. Lu, S.; Qiu, X.; Shi, J.; Li, N.; Lu, Z.H.; Chen, P.; Yang, M.M.; Liu, F.Y.; Jia, W.J.; Zhang, Y. A Pathological Brain Detection System based on Extreme Learning Machine Optimized by Bat Algorithm. CNS Neurol. Disord.-Drug Target 2017, 16, 23–29. [Google Scholar] [CrossRef] [PubMed]
  28. Wang, S.H.; Muhammad, K.; Phillips, P.; Dong, Z.; Zhang, Y.D. Ductal carcinoma in situ detection in breast thermography by extreme learning machine and combination of statistical measure and fractal dimension. J. Ambient Intell. Humaniz. Comput. 2017, 1–11. [Google Scholar] [CrossRef]
  29. Wang, Y.; Cao, F.; Yuan, Y. A study on effectiveness of extreme learning machine. Neurocomputing 2014, 74, 2483–2490. [Google Scholar] [CrossRef]
  30. Liang, N.Y.; Huang, G.B.; Saratchandran, P.; Sundararajan, N. A fast and accurate online sequential learning algorithm for feedforward networks. IEEE Trans. Neural Netw. 2006, 17, 1411–1423. [Google Scholar] [CrossRef] [PubMed]
  31. Gu, Y.; Liu, J.; Chen, Y.; Jiang, X.; Yu, H. TOSELM: Timeliness Online Sequential Extreme Learning Machine. Neurocomputing 2014, 128, 119–127. [Google Scholar] [CrossRef]
  32. Shao, Z.; Meng, J.E. An online sequential learning algorithm for regularized Extreme Learning Machine. Neurocomputing 2016, 173, 778–788. [Google Scholar] [CrossRef]
  33. Yangjun, R.; Xiaoguang, S.; Huyuan, S.; Lijuan, S.; Xin, W. Boosting ridge extreme learning machine. In Proceedings of the 2012 IEEE Symposium on Robotics and Applications (ISRA), Kuala Lumpur, Malaysia, 3–5 June 2012; pp. 881–884. [Google Scholar]
  34. Zhao, J.; Wang, Z.; Dong, S.P. Online sequential extreme learning machine with forgetting mechanism. Neurocomputing 2012, 87, 79–89. [Google Scholar] [CrossRef]
  35. Mirza, B.; Lin, Z.; Liu, N. Ensemble of subset online sequential extreme learning machine for class imbalance and concept drift. Neurocomputing 2015, 149, 316–329. [Google Scholar] [CrossRef]
  36. Vanli, N.D.; Sayin, M.O.; Delibalta, I.; Kozat, S.S. Sequential Nonlinear Learning for Distributed Multiagent Systems via Extreme Learning Machines. IEEE Trans. Neural Netw. Learn. Syst. 2016, 28, 546–558. [Google Scholar] [CrossRef] [PubMed]
  37. Singh, R.; Kumar, H.; Singla, R.K. An intrusion detection system using network traffic profiling and online sequential extreme learning machine. Expert Syst. Appl. 2015, 42, 8609–8624. [Google Scholar] [CrossRef]
  38. Wang, H.; Fan, W.; Yu, P.S.; Han, J. Mining concept-drifting data streams using ensemble classifiers. In Proceedings of the Ninth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Washingto, DC, USA, 24–27 August 2003; pp. 226–235. [Google Scholar]
  39. Han, J.; Kamber, M.; Pei, J. Data Mining: Concepts and Techniques; Morgan Kaufmann: Burlington, MA, USA, 2012. [Google Scholar]
  40. Feng, L.; Xu, S.; Wang, F.; Liu, S. Rough extreme learning machine: A new classification method based on uncertainty measure. arXiv, 2017; arXiv:1710.10824. [Google Scholar]
  41. Wang, J.; Xu, S.; Duan, B.; Liu, C.; Liang, J. An Ensemble Classification Algorithm Based on Information Entropy for Data Streams. arXiv, 2017; arXiv:1708.03496. [Google Scholar]
  42. Zhang, X. Matrix Analysis and Application, 2nd ed.; Tsinghua University Press: Beijing, China, 2013. [Google Scholar]
  43. Roweis, S.T.; Saul, L.K. Nonlinear Dimensionality Reduction by Locally Linear Embedding. Science 2000, 290, 2323–2326. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  44. Gama, J.; Medas, P.; Castillo, G.; Rodrigues, P. Learning with Drift Detection. In Advances in Artificial Intelligence—Sbia 2004, Proceedings of the Brazilian Symposium on Artificial Intelligence, Sao Luis, Maranhao, Brazil, 29 September–1 October 2004; Springer: Berlin/Heidelberg, Germany, 2004; pp. 286–295. [Google Scholar]
  45. Gama, J.; Castillo, G. Learning with local drift detection. In Proceedings of the International Conference on Advanced Data Mining and Applications, Xi’an, China, 14–16 August 2006; pp. 42–55. [Google Scholar]
  46. Street, W.N.; Kim, Y. A streaming ensemble algorithm (SEA) for large-scale classification. In Proceedings of the Seventh ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA; 2001; pp. 377–382. [Google Scholar] [Green Version]
  47. Zhang, P.; Zhu, X.; Shi, Y.; Wu, X. An aggregate ensemble for mining concept drifting data streams with noise. In Proceedings of the 13th Pacific-Asia Conference on Advances in Knowledge Discovery and Data Mining (PAKDD ’09), Bangkok, Thailand, 27–30 April 2009; pp. 1021–1029. [Google Scholar]
  48. Sun, Y.; Mao, G.J.; Liu, X.; Liu, C.N. Mining Concept Drifts from Data Streams Based on Multi-classifiers. Acta Autom. Sin. 2008, 34, 2323–2326. [Google Scholar] [CrossRef]
  49. Bifet, A.; Holmes, G.; Kirkby, R.; Pfahringer, B. MOA: Massive Online Analysis. J. Mach. Learn. Res. 2010, 11, 1601–1604. [Google Scholar]
Figure 1. The structure of ELM.
Figure 1. The structure of ELM.
Algorithms 11 00107 g001
Figure 2. The test result of CELM and OS-ELM with different winsize values.
Figure 2. The test result of CELM and OS-ELM with different winsize values.
Algorithms 11 00107 g002aAlgorithms 11 00107 g002b
Figure 3. The test result CELM with different d values: (a) voice dataset; (b) waveform dataset; (c) bank dataset; (d) adult dataset; (e) letter dataset; (f) hyperplane dataset; (g) occupancy dataset; (h) hill dataset; (i) protein dataset; and (j) ozone dataset.
Figure 3. The test result CELM with different d values: (a) voice dataset; (b) waveform dataset; (c) bank dataset; (d) adult dataset; (e) letter dataset; (f) hyperplane dataset; (g) occupancy dataset; (h) hill dataset; (i) protein dataset; and (j) ozone dataset.
Algorithms 11 00107 g003aAlgorithms 11 00107 g003b
Table 1. The information of the experimental datasets.
Table 1. The information of the experimental datasets.
DatasetSizeAttributesClassesTypes
voice761438512Numeric
waveform50,000213Numeric
bank45,211162Mixed
adult32,561132Mixed
letter20,0001626Categorical
hyperplane50,000402Numeric
occupancy814352Numeric
hill12121002Numeric
Protein1080808Mixed
Ozone2534722Numeric
Table 2. The test accuracies of the algorithms on the experimental datasets.
Table 2. The test accuracies of the algorithms on the experimental datasets.
DatasetCELMSEAAEOS-ELMM_ID4winsizedL
voice0.6511 ± 0.17860.3357 ± 0.06510.4155 ± 0.07370.2808 ± 0.04290.6029 ± 0.1033100520
waveform0.6619 ± 0.01190.6329 ± 0.01360.6374 ± 0.02040.6856 ± 0.01340.6205 ± 0.01951000200200
bank0.8863 ± 0.00940.8841 ± 0.00880.8843 ± 0.00840.8812 ± 0.00870.8269 ± 0.01961200135
adult0.7596 ± 0.01350.8119 ± 0.01680.8156 ± 0.01170.7569 ± 0.01770.7501 ± 0.0235100055
letter0.4930 ± 0.05810.0361 ± 0.00960.3617 ± 0.05970.0418 ± 0.00460.6818 ± 0.13681000132000
hyperplane0.5812 ± 0.02050.5761 ± 0.01640.5758 ± 0.01820.5796 ± 0.03060.5385 ± 0.01991000302000
occupancy0.9670 ± 0.02940.9882 ± 0.01110.9788 ± 0.01910.7835 ± 0.02910.9640 ± 0.0182100510
hill0.5517 ± 0.06590.5643 ± 0.08130.4833 ± 0.04910.4900 ± 0.03440.5283 ± 0.03696080100
Protein0.6354 ± 0.05990.5750 ± 0.15780.6583 ± 0.15320.1354 ± 0.03480.5854 ± 0.112580501000
Ozone0.9408 ± 0.01070.9396 ± 0.02510.9392 ± 0.01310.9408 ± 0.01070.7692 ± 0.101812030200
Average0.7128 ± 0.02970.6344 ± 0.04060.6750 ± 0.04240.5576 ± 0.02270.6868 ± 0.0592
Table 3. The time consumption of the algorithms on the experimental datasets.
Table 3. The time consumption of the algorithms on the experimental datasets.
DatasetCELMSEAAEOS-ELMM_ID4
voice2.04332401.3555291.97060.11605234.9994
waveform82.96261523.1448172.02070.1480>20,000
bank10.8994573.601963.82360.11002392.9633
adult6.1201279.058737.70940.05662830.5794
letter70.0543248.784829.88720.08653638.3141
hyperplane27.55371558.7989160.42450.24023486.1807
occupancy1.208515.44852.38940.063275.3053
hill0.531959.41448.90180.054875.0302
Protein4.250040.22886.35980.042614.2372
Ozone0.452864.59236.05100.073932.7597
Table 4. The dimension reduction result of CELM testing in Table 2.
Table 4. The dimension reduction result of CELM testing in Table 2.
DatasetThe Number of Original FeaturesAfter Dimension ReductionDecrementReduction Rate
voice38553800.9870
adult13570.5384
letter161330.1875
hyperplane4030100.2500
occupancy5500.0000
hill10080200.2000
Protein8050300.3750
Ozone7230420.5833
Table 5. The accuracy standard deviation of CELM testing in Figure 3.
Table 5. The accuracy standard deviation of CELM testing in Figure 3.
DatasetVoiceWaveformBankAdultLetterHyperplaneOccupancyHillProteinOzone
Standard deviation0.19710.04090.01090.01930.08160.01120.03730.02220.19920.0045

Share and Cite

MDPI and ACS Style

Yang, R.; Xu, S.; Feng, L. An Ensemble Extreme Learning Machine for Data Stream Classification. Algorithms 2018, 11, 107. https://doi.org/10.3390/a11070107

AMA Style

Yang R, Xu S, Feng L. An Ensemble Extreme Learning Machine for Data Stream Classification. Algorithms. 2018; 11(7):107. https://doi.org/10.3390/a11070107

Chicago/Turabian Style

Yang, Rui, Shuliang Xu, and Lin Feng. 2018. "An Ensemble Extreme Learning Machine for Data Stream Classification" Algorithms 11, no. 7: 107. https://doi.org/10.3390/a11070107

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