Next Article in Journal
Novel Method for NTC Thermistor Production by Aerosol Co-Deposition and Combined Sintering
Next Article in Special Issue
Efficient Continuous Skyline Query Processing in Wireless Sensor Networks
Previous Article in Journal
A Smart Context-Aware Hazard Attention System to Help People with Peripheral Vision Loss
Previous Article in Special Issue
SatEC: A 5G Satellite Edge Computing Framework Based on Microservice Architecture
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Feature Extraction Method Based on Differential Entropy and Linear Discriminant Analysis for Emotion Recognition

1
School of Electronic Information Engineering, University of Electronic Science and Technology of China, XueYuan Road, Shi Qi District, Zhongshan 528400, China
2
Faculty of Information Technology, Macau University of Science and Technology, Avenida Wai Long, Taipa, Macau 999078, China
3
School of Business, Beijing Institute of Technology, JinFeng Road, TangJiaWan Town, Zhuhai 519000, China
*
Author to whom correspondence should be addressed.
Sensors 2019, 19(7), 1631; https://doi.org/10.3390/s19071631
Submission received: 12 February 2019 / Revised: 13 March 2019 / Accepted: 3 April 2019 / Published: 5 April 2019

Abstract

:
Feature extraction of electroencephalography (EEG) signals plays a significant role in the wearable computing field. Due to the practical applications of EEG emotion calculation, researchers often use edge calculation to reduce data transmission times, however, as EEG involves a large amount of data, determining how to effectively extract features and reduce the amount of calculation is still the focus of abundant research. Researchers have proposed many EEG feature extraction methods. However, these methods have problems such as high time complexity and insufficient precision. The main purpose of this paper is to introduce an innovative method for obtaining reliable distinguishing features from EEG signals. This feature extraction method combines differential entropy with Linear Discriminant Analysis (LDA) that can be applied in feature extraction of emotional EEG signals. We use a three-category sentiment EEG dataset to conduct experiments. The experimental results show that the proposed feature extraction method can significantly improve the performance of the EEG classification: Compared with the result of the original dataset, the average accuracy increases by 68%, which is 7% higher than the result obtained when only using differential entropy in feature extraction. The total execution time shows that the proposed method has a lower time complexity.

1. Introduction

Electroencephalography (EEG) is a means of data acquisition via sensors [1,2]. In actual applications, due to the large amount of data involved in EEG, the collected data is often used in the mobile edge computing server for moving edge calculation. The Brain–Computer Interface (BCI), also known as the direct neural interface, is an interdisciplinary cutting-edge technology. It is a direct connection pathway established between a human or animal brain (or culture of brain cells) and an external device [3,4,5,6,7]. The role of BCI is to establish communication between the human brain and external computers or other intelligent electronic devices [8,9]. Emotional recognition is a very important part of BCI. Emotional recognition generally refers to the acquisition of an individual’s physiological or non-physiological signals to automatically identify the individual’s emotional state [10,11]. Emotional recognition is an important part of the emotional calculation, and has a very important meaning in medicine and engineering [12].
Feature extraction is a crucial step in accurately classifying or decoding EEG signals in a BCI system. Therefore, since the concept of BCI was proposed, researchers have conducted numerous studies on how to effectively extract features from EEG signals [13,14]. Since the original EEG signals are noisy, it is often difficult to find effective features directly by classification calculation. How to perform effective signal decomposition is an important problem. In response to this situation, early researchers mostly used statistical indicators (median, standard deviation, kurtosis symmetry, etc.) of the first difference of the signal for feature extraction, and then proposed the spectral density (EEG signal with a specific frequency band) [15], logarithmic power (Log BP) (band power based on the oscillation process in the signal) [16], Hjorth parameters (EEG signals described by activity, mobility, and complexity) [17], wavelet transform (decomposition of EEG signals) [15], etc. In 2013, Duan proposed a feature extraction method based on differential entropy, which achieved good results on emotion-based datasets [18]. In the past two years, many researchers have used differential entropy as a feature extraction method to achieve good results on different datasets [19,20]. However, researchers often use multi-channel acquisition equipment when collecting EEG data. This results in high-dimension single samples, which makes the model likely to be overfitted, and the high dimensionality will result in higher computational cost and time complexity of the model. Therefore, the feature extraction method that uses only differential entropy may cause the training of the model to be time-consuming and over-fitting for the multi-channel dataset.
In this situation, the dimension reduction used to perform quadratic feature extraction is an effective method. In previous studies, researchers have also experimented with many methods for feature extraction of EEG signals. For example, Lee proposed a data dimension reduction method based on principal component analysis (PCA), which significantly improved the classification results of the imaginary dataset of left- or-right-hand motor imagery data [21]. Subasi proposed a data reduction method based on linear discriminant analysis (LDA), which proved that the LDA method can effectively improve the classification of epileptic datasets [22]. These methods have been experimentally proven to effectively extract important features and reduce the dimensions of the sample. In this situation, we hope to combine signal decomposition and data dimensionality reduction in order to improve the accuracy of classification while reducing the computational time complexity.
This paper proposes a feature extraction method based on the fusion of differential entropy and LDA (Figure 1, yellow area). The method was tested on a three-category emotion EEG dataset. We performed experiments on the original dataset using differential entropy, LDA, and the fusion of differential entropy and LDA. We used five classic methods for classification: logistic regression (LR), support vector machine (SVM), k-nearest neighbor (k-NN), random forests (RF), and multilayer perceptron (MLP). At the same time, the cases using differential entropy alone (Figure 1, red area) and using LDA alone (Figure 1, blue area) as the feature extraction method are compared. The experimental results show that the proposed method can significantly improve the final classification results. The average accuracy is 68% higher than that of experiments on the original dataset and is 7% higher than the result when only using differential entropy for feature extraction. The execution time shows that the proposed method has less time complexity after feature selection. The method proposed in this paper has the following advantages compared with the previous methods: (i) compared with the method using only differential entropy and only the LDA method, the proposed method has higher classification accuracy; and (ii) the proposed method can effectively reduce the time complexity of the classification method. In general, this paper proposes a feature extraction method based on the fusion of differential entropy and LDA. The validity is verified based on the three-class emotion dataset, and the result is better than that of previous researches.
The remaining sections are organized as follows: Section 2 introduces the classification methods used in this paper, including LR, SVM, k-NN, RF, and MLP. Section 3 introduces the public dataset used in this paper and the fusion of differential entropy and the LDA method. Section 4 gives a performance comparison of experiments with different methods. In Section 5, the current state of the brain–computer interface and the emotional classification field are discussed. In Section 6, a conclusion is given and future work is described.

2. Related Works

This section introduces five classic machine-learning methods. In previous research, these methods have been applied to emotion recognition and other classification recognition based on EEG signals.
The logistic regression (LR) method is a classic classification method. This method is widely used in various fields including brainwave classification [23,24,25]. The LR method is used to solve the classification problem, firstly establish the cost function, and then iteratively solve the optimal model parameters through the optimization method. Finally, it verifies the quality of this model. In this paper, the L2 norm is used to prevent overfitting.
The SVM method is a classic machine-learning method. This method is widely used in the field of classification based on EEG signals [26,27,28]. If the data is not linearly separable, the kernel function will be used. Common kernel functions include linear, poly, radial basis function (RBF), sigmoid, and so on. In this paper, we use linear as a kernel function for the SVM method.
The k-NN method is a kind of classical data-mining method that has been used in EEG emotion recognition for many years [29,30]. The basis of the k-NN method is measuring the distance between different sample feature values. Its main concept is that for a new sample in the feature space, it belongs to the most frequent category in its most similar samples of k in all samples. In general, k is usually not greater than an integer of 20.
RF is an improved method of the decision-tree method. This method is also widely used in the classification of EEG signals [31,32,33]. RF is an algorithm that integrates multiple trees through the idea of integrated learning. Its basic unit is the decision tree, and its essence belongs to a large branch of machine-learning-integrated learning methods. From an intuitive point of view, each decision tree is a classifier, then for an input sample, N trees will have N classification results. The random forest integrates all the classification results by a voting strategy, so the category of highest frequency is the final output.
Finally, MLP, also called an artificial neural network, is a kind of neural network method which is often used in various fields, including EEG signal classification [34,35]. The MLP model consists of an input layer, an output layer, and multiple hidden layers. The layers are generally in the form of full connections, using the sigmoid or tanh functions as the activation function. MLP can implement nonlinear discriminants. Studies have shown that any function with continuous input and output can be approximated by MLP. An MLP neural network with a hidden layer (no limit to the number of hidden nodes) can learn any nonlinear function of the input to output.

3. Our Method

3.1. Dataset

The experiment was conducted using a public emotional EEG dataset called SEED, which uses film fragments as emotion-inducing materials and includes three categories: positive, neutral, and negative emotions. In each experiment, the participants watched movie clips of different emotional states. Each clip was played for about four minutes. In the experiment, three types of movie clips were played. Each type of movie clip contains five movies, giving a total of 15 movies. These movie clips were all from Chinese movies. There was a five-second prompt before each short film show, with 45 seconds of feedback time after playback and 15 seconds of rest after watching. A total of 15 subjects participated in the experiment (seven males, eight females, mean age 23.27 years old with a standard deviation of 2.37), all of whom had normal visual, auditory, and emotional states. The EEG signal when the subject was watching the movie was recorded through the electrode cap, with a sampling frequency of 1000 Hz. The experiment used the international 10-20 system and a 62-channel electrode cap. Each volunteer participated in three experiments, and each experiment was separated by about one week. Therefore, a total of 675 (15 × 15 × 3) data samples were formed. Then, 200 Hz down-sampling and 0.5–70 Hz filtering were performed to obtain a preprocessed EEG dataset. For more information on the dataset, please refer to the website http://bcmi.sjtu.edu.cn/~seed/index.html.

3.2. Methods

The method of using the differential entropy algorithm for feature extraction has been widely used in the field of image and signal processing [36,37]. This method can effectively extract information that may be valid in the sample. The feature extraction method proposed in this paper uses the differential entropy algorithm to decompose the signal, remove the noise of the EEG signal, and extract important features. LDA is a classic algorithm for pattern recognition. It was introduced in the field of pattern recognition and artificial intelligence by Belhumeur in 1997 [38]. The basic idea of LDA is to project high-dimensional samples into low-dimensional space to achieve the effect of extracting classification information and compressing feature space dimensions. After projection, the sample has the largest inter-class distance and the minimum intraclass distance. Therefore, it is an effective feature extraction method. In this paper, the LDA method is used to reduce the dimension of the data after signal decomposition, which is used to achieve the secondary extraction feature and reduce the time complexity of the classification method. This section describes a feature extraction method based on differential entropy and LDA. This section includes two parts: signal decomposition and data dimensionality reduction.

3.2.1. Signal Decomposition

First, we perform signal decomposition on the original signal to remove noise and extract useful information from the signal. Entropy is a thermodynamic quantity describing the disorder of a system. The concept of entropy has been successfully applied to the analysis of EEG signals. Although the original EEG signal does not follow a fixed distribution, research has proven that from 2 to 44 Hz by steps of 2 Hz, the EEG signal after filtering obeys a Gaussian distribution. This paper uses differential entropy to perform signal decomposition of EEG [18].
Differential entropy is used to measure the complexity of continuous random variables, and is the entropy of continuous random variables. The differential entropy is also related to the minimum description length. Its calculation formula can be expressed as Equation (1):
h ( X ) = X f ( x ) log ( f ( x ) ) d x
where X is a random variable and f(x) is the probability density function of X. For the time series X obeys Gaussian distribution N (μ, σ2), its differential entropy can be defined as Equation (2):
h ( X ) = 1 2 log ( 2 π e σ 2 )
In a fixed frequency band i, the differential entropy is defined as Equation (3):
h i ( X ) = 1 2 log ( 2 π e σ i 2 )

3.2.2. Data Dimensionality Reduction

Next, we use the LDA method for quadratic feature extraction and data dimensionality reduction. There is a lot of noise in the EEG signals. However, the EEG signal after band-pass filtering has been proven to obey a Gaussian distribution [18]. More importantly, in a large amount of data, it can be sure that the EEG signal has a relatively obvious main component. This means that the EEG signals meet the requirements of the LDA method; that is to say, the signal conforms to a Gaussian distribution and has a distinct principal component. This in turn suggests that EEG signals can be extracted and classified using the LDA method. The goal of LDA is to create a new variable that is a combination of the original predictors. This is accomplished by maximizing the differences between the predefined groups, with respect to the new variable. The optimization function of the two-class classification and multi-class classification of the LDA method is different. Since this paper uses a three-category emotion EEG dataset, we give only a brief description of the method of multi-class classification.
Assumed dataset is D = { ( x 1 , y 1 ) , ( x 2 , y 2 ) , , ( x m , y m ) } , any sample x i is n-dimensional vector, y i = { C 1 , C 2 , , C K } . We define N j ( j = 1 , 2 , , K ) as the number of samples of class j , X j ( j = 1 , 2 , , K ) is a collection of class j samples, and μ j ( j = 1 , 2 , , K ) is the mean vector of the j sample. Define Σ j ( j = 1 , 2 , , K ) as the covariance matrix for the class j samples. The μ j is Equation (4), and the Σ j is Equation (5):
μ j = 1 N j x X j x
Σ j = x X j ( x μ j )
Suppose the dimension of the low-dimensional space that the function needs to project into is d, the corresponding base vector is ( w 1 , w 2 , , w d ) , base vector composition matrix W. It is a matrix of n × d . The optimization objective function at this time is Equation (6). S b is Equation (7) and S w is Equation (8). diag A is the product of the main diagonal elements of A . The optimization process for J ( W ) can be converted to Equation (9):
arg max W J ( W ) = diag W T S b W diag W T S w W
S b = j = 1 K N j ( μ j μ ) ( μ j μ ) T
S w = j = 1 K S w j = j = 1 K x X j ( x μ j ) ( x μ j ) T
J ( W ) = i = 1 d w i T S b w i i = 1 d w i T S w w i = i = 1 d w i T S b w i w i T S w w i
The process above is the feature extraction process.

4. Results

First we adopted a band filter to divide the EEG signals into five bands, including Delta (1–3 Hz), Theta (4–7 Hz), Alpha (8–13 Hz), Beta (14–30 Hz), and Gamma (31–50 Hz). Therefore, we obtained five datasets representing the corresponding band. Then, we combined the five-band data in order to inform the combined band data. After that, we applied differential entropy (DE), LDA, and the DE and LDA method proposed in this paper to extract features respectively. Finally, we adopted five classification methods, that is, k-NN, LR, MLP, RF, and SVM. Each test randomly assigned 675 samples into mutually exclusive training sets (70%) and validation sets (30%). The experiment adopted the five-fold cross-validation method to ensure the accuracy of the results.
For the five classifiers, parameter tuning was conducted. After tuning, the better parameters for these classifiers were chosen. For the logistic regression method, L2 penalty was used, and the inverse of regularization strength was 1.0. For the SVM method, the ‘rbf’ kernel function is applied, and the penalty parameter C was 1.0. For the k-NN method, the number of neighbors was set as 20. For the random forest model, the number of trees in the forest was 120, the maximum depth of the tree was 10, and the minimum number of samples required to split an internal node was 8. For the MLP classifier, the optimizer was the Adam method, the activation function was ReLU, and the batch size was 32; the size of two hidden layers were 64 and 32 respectively, and the learning rate was 0.0001.
We decided to adopt several evaluation methods to ensure the accuracy of the results. First, we calculated the accuracy to evaluate the method; the accuracy is defined as the ratio of the number of samples correctly classified by the classifier to the total number of samples in the test dataset. However, accuracy is not always valid for evaluating the performance of a method, especially in the situation that the numbers of true and false samples in the same datasets is not completely equal. Then, we calculated the F1 score, which is a statistical indicator used to measure the accuracy of a binary model. It also considers the accuracy and recall rate of the classification model. Moreover, we used the Kappa coefficient, which is generally thought to be a more robust measure than simple percentage agreement calculation. Finally, in order to judge the performance of the methods intuitively, we drew the confusion matrix graph and the box plot.

4.1. Classification Result of the Experiment with Different Feature Selection Methods

Table 1 gives the experimental outputs of prediction performance in the original dataset. Table 2 gives the experimental outputs of prediction performance in the original data based on LDA feature extraction. Table 3 gives the experimental outputs of prediction performance in the differential entropy data. Table 4 gives the experimental outputs of prediction performance in differential entropy data based on LDA feature extraction. These tables only show the best two classification methods in the experiments. Details are given in Supplementary Tables S1–S4.
Table 1 shows that the random forest method has the highest average accuracy in the Gamma band. Table 2 shows that the random forest method has the highest average accuracy in the case of combined frequency band data. Table 3 shows that the SVM method has the highest average accuracy in the case of combined frequency band data. Table 4 shows that the SVM method has the highest average accuracy in the case of combined frequency bands. It can be seen from Table 1, Table 2, Table 3 and Table 4 that, under different conditions, except for Table 1, in general, the accuracy of experiments on the combined frequency band data is better than the accuracy of experiments on the sub-band data, and the performance of the SVM method is superior to other methods. Therefore, the analysis of the experimental part uniformly uses the combined frequency band data and SVM method.
Table 1, Table 2, Table 3 and Table 4 show that, in the case of using the combined frequency band data, the classification effect of the differential entropy combined with LDA method is significantly better than the case of using the differential entropy method alone and the LDA method alone. The average classification accuracy of feature extraction using the differential entropy combined with LDA method is 82.5%, and the accuracy is 7.1% higher than that of the differential entropy method alone, 73.7% higher than that of the LDA method. The precision and the recall rate were improved by 4.3% and 4.2%, respectively, compared with the differential entropy method alone, and improved by 62.8% and 67.8%, respectively, compared with the LDA method alone. Compared with the feature extraction method of differential entropy alone and the LDA method alone, the F1 score increased by 4.2% and 69.3%, respectively. It is worth noting that the Kappa value of the differential entropy combined with LDA method is 0.698, which indicates that the predictive category of emotional EEG is highly consistent with the actual category, which is 59.5% higher than that of the LDA method alone and 6.7% higher than that of the differential entropy method alone. The experimental results show that the differential entropy combined with LDA method has better recognition effect than the existing methods based on the differential entropy method and LDA method.
The experimental results show that the differential entropy combined with LDA method can be effectively used to process EEG signals. The differential entropy method can extract the time–phase information of emotional EEG and reflect the change of emotion. The use of the LDA method preserves valid feature information while reducing the data dimension.
From the experimental results in the frequency bands of Delta, Theta, Alpha, Beta, Gamma, and the combined frequency bands data, it is found that the differential entropy combined with LDA method has the best classification effect, not only in the combined frequency band, but also in other frequency bands, and the classification result of the method proposed in this paper is also better. For example, in the Beta band, when using the SVM classification method, the average accuracy of the differential entropy combined with LDA method is 71.4%, which is 2.9% and 58.3% higher than the differential entropy method alone and the LDA method alone, respectively. The precision rate of the differential entropy combined with LDA method increased by 2.5% and 55.7% compared with the differential entropy method alone and the LDA method alone, respectively. The recall rate was increased by 2.4% and 63.8% compared with the differential entropy method alone and the LDA method alone, respectively. The F1 score was increased by 2.2% and 64.3% compared with the differential entropy method alone and the LDA method alone. The Kappa coefficient increased by 4.6% and 56.4%, respectively, compared to the differential entropy method alone and the LDA method alone. In the Gamma band, the average accuracy of the differential entropy combined with LDA method is 74.1%, which is 8.8% and 56.0% higher than the differential entropy method alone and the LDA method alone, respectively. The results show that the differential entropy combined with LDA method is superior to the existing differential entropy method and LDA method in the classification of emotional EEG in all frequency bands.
In order to analyze the prediction results more intuitively, this paper presents box plots of the accuracy rate of experiments in the combined frequency band, and a confusion matrix diagram for the prediction results of the best performing methods in each experiment.
Figure 2 shows a box plot of the classification accuracy for different classification methods on the original data. Figure 3 shows a box plot of the classification accuracy for different classification methods on raw data based on the LDA method. Figure 4 shows a box plot of the classification accuracy for different classification methods on raw data based on differential entropy method. Figure 5 is a box plot of the classification accuracy for different classification methods on raw data based on differential entropy combined with LDA method.
Figure 6 shows a confusion matrix diagram of the best prediction results on raw data using the random forest method. Figure 7 shows a confusion matrix diagram of the best prediction results based on the LDA method using the random forest method. Figure 8 shows a confusion matrix diagram of the best prediction results based on the differential entropy method for feature extraction using the logistic regression method. Figure 9 shows a confusion matrix diagram of the best prediction result of feature extraction based on the differential entropy combined with LDA method using the SVM method.
It can be seen from Figure 2, Figure 3, Figure 4 and Figure 5 that the classification effect of the differential entropy combined with LDA method is superior to other methods. In the experiments based on the LDA method of raw data, the random forest method achieved the best accuracy. In the experiment based on the differential entropy method, the logistic regression method achieved the best classification accuracy, and the accuracy rate reached 77.4%. In the experiment based on differential entropy combined with LDA method, the SVM method achieved the best accuracy; the accuracy rate reached 82.5%, and the accuracy of the logistic regression method reached 81.7%. From the experimental results, the differential entropy combined with LDA method can effectively improve the results of emotional classification based on EEG.
It can also be seen from Figure 6, Figure 7, Figure 8 and Figure 9 that, in the confusion matrix diagram corresponding to the differential entropy combined with LDA method, the dark regions are concentrated on the diagonal, while the dark regions of other methods are relatively scattered. This indicates that the classification performance of differential entropy combined with LDA method for feature extraction of EEG signals is superior to other methods.

4.2. Time Complexity Result of Experiment with Different Feature Selection Methods

Table 5 shows the time complexity of four experiments with different classification methods in the original dataset, the original dataset based on LDA feature extraction, the differential entropy dataset, and the differential entropy dataset based on LDA feature extraction.
As can be seen from Table 5, the differential entropy combined with LDA feature extraction method has the best time complexity, and the time spent is significantly less than for other methods. Since the SVM method has the best classification effect in the combined frequency band under normal circumstances, the following is based on the experimental results of using the SVM method on the combined frequency band data. In experiments using the differential entropy method, the LDA method, and the differential entropy combined with LDA method, the time spent of the differential entropy combined with LDA method is 28.7% of that of the LDA method, and is only 17.6% of that of the differential entropy method. This indicates that the differential entropy method can extract the information of emotional changes of EEG signals, and that LDA can further extract effective features, accelerate the convergence speed of classification models, and reduce the time complexity. The experimental results show that the time performance of differential entropy combined with LDA method in emotional EEG recognition is better than the existing method.

5. Discussion

The last 10 years have seen the rapid development of computers and the continuous updating of signal acquisition equipment. New machine-learning and deep learning methods are constantly being proposed. The research on brain–computer interface has also made great progress, from the earliest two-category epilepsy recognition [39] and left-right hand movement imagination [40] to more complex two-classification motion recognition [41], and finally to multi-class emotion recognition [42]. We can see that the classification situation is increasing and the difficulty of feature extraction is increasing. This puts higher requirements on feature extraction methods and classification recognition methods. At present, with the depth of research, more complex feature-recognition and classification methods are constantly being proposed. Existing research has proved that the EEG signal is roughly consistent with a Gaussian distribution through band-pass filtering and signal processing, which lays a solid foundation for the feature extraction of EEG signals, such as signal feature extraction methods based on Fourier transformation, signal feature extraction methods based on differential entropy have been proposed. The proposed methods have greatly improved the classification results of EEG signals.
However, we believe that, whether in motion recognition or emotion recognition, it is necessary to have higher real-time performance in practical applications. In order to reduce the transmission delay, researchers often transmit the calculated data to a nearby mobile edge computing server for edge calculation instead of sending it to the cloud. However, due to the limited computing power of the server, the real-time transmission of EEG data is relatively high. In such a case, it becomes very important to perform effective feature extraction to reduce the amount of calculation. Under the premise of ensuring classification accuracy, the classification method needs to quickly judge the current state of the user. Therefore, it is not comprehensive enough to emphasize the improvement of classification accuracy. How to further reduce the time complexity of the method while improving the accuracy is still the focus of our attention. On this basis, the researchers have proposed dimensionality reduction methods such as PCA and LDA to reduce the time complexity of the classification method and to reduce the running time of the method.
Based on the previous research results and the characteristics of EEG signals, we believe that the combination of differential entropy and LDA method can effectively reduce the time complexity of the method while extracting EEG data features. The final experiment also verified this. Although our approach has many advantages, it is worth noting that our method can only reduce the complexity of the data in the feature extraction part; we cannot directly reduce the time complexity of the classification method. This has little effect on traditional machine learning methods. However, now, more and more researchers tend to use deep learning methods such as convolutional neural networks (CNN), recurrent neural networks (RNN), and deep belief network (DBN) [43,44,45]. Deep learning brings new breakthroughs in the use of brain–computer interfaces. Its classification accuracy is higher, and more complicated situations can be classified. However, due to the high dimension of EEG data and the relative scarcity of samples, determining how to establish a corresponding deep learning network is a big problem, and it is difficult to adjust the parameters of deep learning. Determining how to build a common model for different data is the direction of the next research. More importantly, these methods are inherently complex and can result in high time complexity for classification calculations. Therefore, our next goal is to optimize the deep learning method to further reduce the run-time requirements of the method, improve the classification accuracy, and try to build a more general deep learning model.

6. Conclusions

This paper proposes a feature extraction method based on the fusion of differential entropy and LDA method. Experiments were performed using five classical classification methods on emotion-based three-class datasets. The results show that the feature extraction method proposed in this paper can effectively improve the final classification accuracy in five classical classification methods. More importantly, the method proposed in this paper can reduce the time complexity and running time of the model. This means that the feature extraction method based on the fusion of differential entropy and the LDA method proposed in this paper can be effectively applied to multi-class emotion recognition. For the clinical environment, this means that if the method can be used, the patient’s mood and pathology can be judged more quickly, and doctors can better diagnose their condition and determine the patient’s state in real time. In the future, we hope to test more datasets and test the deep learning method.

Supplementary Materials

The following are available online at https://www.mdpi.com/1424-8220/19/7/1631/s1.

Author Contributions

Conceptualization, D.-W.C. and R.M.; methodology, R.M.; software, W.-Q.Y.; validation, D.-W.C, R.M., and W.-Q.Y.; formal analysis, H.-H.C. and L.H.; writing—original draft preparation, R.M. and W.-Q.Y.; writing—review and editing, Y.L, N.H, and C.-J.D.; visualization, W.-Q.Y.; supervision, N.H.

Funding

The research work was supported by the Zhongshan City Team Project (Grant No. 180809162197874), Research Projects for High-Level Talents of University of Electronic Science and Technology of China, Zhongshan (417YKQ8), and the Characteristic Innovation Project of Guangdong Province (2017GXJK217), Guangdong Provincial Department of Education, 2017 Key Scientific Research Platform and Scientific Research Project (2017GCZX007).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Rashid, U.; Niazi, I.K.; Signal, N.; Taylor, D. An EEG Experimental Study Evaluating the Performance of Texas Instruments ADS1299. Sensors 2018, 18, 3721. [Google Scholar] [CrossRef]
  2. Uktveris, T.; Jusas, V. Development of a Modular Board for EEG Signal Acquisition. Sensors 2018, 18, 2140. [Google Scholar] [CrossRef]
  3. Wolpaw, J.R.; Birbaumer, N.; Heetderks, W.J.; McFarland, D.J.; Peckham, P.H.; Schalk, G.; Donchin, E.; Quatrano, L.A.; Robinson, C.J.; Vaughan, T.M. Brain-computer interface technology: A review of the first international meeting. IEEE Trans. Rehabil. Eng. 2000, 8, 164–173. [Google Scholar] [CrossRef]
  4. Wolpaw, J.R.; Birbaumer, N.; McFarland, D.J.; Pfurtscheller, G.; Vaughan, T.M. Brain–computer interfaces for communication and control. Clin. Neurophysiol. 2002, 113, 767–791. [Google Scholar] [CrossRef]
  5. Cecotti, H. Spelling with non-invasive brain-computer interfaces—Current and future trends. J. Physiol.-Paris 2011, 105, 106–114. [Google Scholar] [CrossRef] [PubMed]
  6. Chaudhary, U.; Birbaumer, N.; Ramos-Murguialday, A. Brain–computer interfaces for communication and rehabilitation. Nat. Rev. Neurol. 2016, 12, 513–525. [Google Scholar] [CrossRef] [PubMed]
  7. Ramadan, R.A.; Vasilakos, A.V. Brain computer interface: Control signals review. Neurocomputing 2017, 223, 26–44. [Google Scholar] [CrossRef]
  8. Jin, J.; Sellers, E.W.; Zhou, S.; Zhang, Y.; Wang, X.; Cichocki, A. A P300 brain–computer interface based on a modification of the mismatch negativity paradigm. Int. J. Neural Syst. 2015, 25, 1550011. [Google Scholar] [CrossRef] [PubMed]
  9. Li, Y.; Pan, J.; Long, J.; Yu, T.; Wang, F.; Yu, Z.; Wu, W. Multimodal BCIs: Target detection, multidimensional control, and awareness evaluation in patients with disorder of consciousness. Proc. IEEE 2016, 104, 332–352. [Google Scholar]
  10. Cowie, R.; Douglas-Cowie, E.; Tsapatsoulis, N.; Votsis, G.; Kollias, S.; Fellenz, W.; Taylor, J.G. Emotion recognition in human-computer interaction. IEEE Signal Process. Mag. 2001, 18, 32–80. [Google Scholar] [CrossRef]
  11. Busso, C.; Deng, Z.; Yildirim, S.; Bulut, M.; Lee, C.M.; Kazemzadeh, A.; Lee, S.; Neumann, U.; Narayanan, S. Analysis of emotion recognition using facial expressions, speech and multimodal information. In Proceedings of the 6th International Conference on Multimodal Interfaces, State College, PA, USA, 13–15 October 2004; ACM: New York, NY, USA, 2014. [Google Scholar]
  12. Atkinson, J.; Campos, D. Improving BCI-based emotion recognition by combining EEG feature selection and kernel classifiers. Expert Syst. Appl. 2016, 47, 35–41. [Google Scholar] [CrossRef]
  13. Dai, M.; Zheng, D.; Na, R.; Wang, S.; Zhang, S. EEG Classification of Motor Imagery Using a Novel Deep Learning Framework. Sensors 2019, 19, 551. [Google Scholar] [CrossRef] [PubMed]
  14. Zeng, Y.; Wu, Q.; Yang, K.; Tong, L.; Yan, B.; Shu, J.; Yao, D. EEG-Based Identity Authentication Framework Using Face Rapid Serial Visual Presentation with Optimized Channels. Sensors 2019, 19, 6. [Google Scholar] [CrossRef] [PubMed]
  15. Zhang, A.; Yang, B.; Huang, L. Feature extraction of EEG signals using power spectral entropy. In Proceedings of the 2008 International Conference on Biomedical Engineering and Informatics, Sanya, China, 27–30 May 2008. [Google Scholar]
  16. Brunner, C.; Billinger, M.; Vidaurre, C.; Neuper, C. A comparison of univariate, vector, bilinear autoregressive, and band power features for brain–computer interfaces. Med. Biol. Eng. Comput. 2011, 49, 1337–1346. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  17. Petrantonakis, P.C.; Hadjileontiadis, L.J. Emotion recognition from brain signals using hybrid adaptive filtering and higher order crossings analysis. IEEE Trans. Affect. Comput. 2010, 1, 81–97. [Google Scholar] [CrossRef]
  18. Duan, R.N.; Zhu, J.Y.; Lu, B.L. Differential entropy feature for EEG-based emotion classification. In Proceedings of the 2013 6th International IEEE/EMBS Conference on Neural Engineering (NER), San Diego, CA, USA, 6–8 November 2013. [Google Scholar]
  19. Zheng, W.L.; Lu, B.L. Investigating critical frequency bands and channels for EEG-based emotion recognition with deep neural networks. IEEE Trans. Auton. Ment. Dev. 2015, 7, 162–175. [Google Scholar] [CrossRef]
  20. Yang, Y.X.; Gao, Z.K.; Wang, X.M.; Li, Y.L.; Han, J.W.; Marwan, N.; Kurths, J. A recurrence quantification analysis-based channel-frequency convolutional neural network for emotion recognition from EEG. Chaos Interdiscip. J. Nonlinear Sci. 2018, 28, 085728. [Google Scholar] [CrossRef]
  21. Lee, H.; Choi, S. PCAcombine with HMM combine with SVM for EEG pattern classification. In Proceedings of the Seventh International Symposium on Signal Processing and Its Applications, Paris, France, 4 July 2003. [Google Scholar]
  22. Subasi, A.; Gursoy, M.I. EEG signal classification using PCA, ICA, LDA and support vector machines. Expert Syst. Appl. 2010, 37, 8659–8666. [Google Scholar] [CrossRef]
  23. Alkan, A.; Koklukaya, E.; Subasi, A. Automatic seizure detection in EEG using logistic regression and artificial neural network. J. Neurosci. Methods 2005, 148, 167–176. [Google Scholar] [CrossRef]
  24. Subasi, A.; Ercelebi, E. Classification of EEG signals using neural network and logistic regression. Comput. Methods Programs Biomed. 2005, 78, 87–99. [Google Scholar] [CrossRef]
  25. Tomioka, R.; Aihara, K.; Müller, K.R. Logistic regression for single trial EEG classification. In Advances in Neural Information Processing Systems 19, Proceedings of the Twentieth Annual Conference on Neural Information Processing Systems, Vancouver, BC, Canada, 4–7 December 2006; MIT Press: Cambridge, MA, USA, 2006. [Google Scholar]
  26. Chandaka, S.; Chatterjee, A.; Munshi, S. Cross-correlation aided support vector machine classifier for classification of EEG signals. Expert Syst. Appl. 2009, 36, 1329–1336. [Google Scholar] [CrossRef]
  27. Shao, S.Y.; Shen, K.Q.; Ong, C.J.; Wilder-Smith, E.P.; Li, X.P. Automatic EEG artifact removal: A weighted support vector machine approach with error correction. IEEE Trans. Biomed. Eng. 2009, 56, 336–344. [Google Scholar] [CrossRef] [PubMed]
  28. Liu, S.; Tong, J.; Meng, J.; Yang, J.; Zhao, X.; He, F.; Qi, H.; Ming, D. Study on an effective cross-stimulus emotion recognition model using EEGs based on feature selection and support vector machine. Int. J. Mach. Learn. Cybern. 2018, 9, 721–726. [Google Scholar] [CrossRef]
  29. Yazdani, A.; Ebrahimi, T.; Hoffmann, U. Classification of EEG signals using Dempster Shafer theory and a k-nearest neighbor classifier. In Proceedings of the 4th International IEEE/EMBS Conference on Neural Engineering, Antalya, Turkey, 29 April–2 May 2009. [Google Scholar]
  30. Acharya, U.R.; Molinari, F.; Sree, S.V.; Chattopadhyay, S.; Ng, K.H.; Suri, J.S. Automated diagnosis of epileptic EEG using entropies. Biomed. Signal Process. Control 2012, 7, 401–408. [Google Scholar] [CrossRef]
  31. Fraiwan, L.; Lweesy, K.; Khasawneh, N.; Wenz, H.; Dickhaus, H. Automated sleep stage identification system based on time–frequency analysis of a single EEG channel and random forest classifier. Comput. Methods Programs Biomed. 2012, 108, 10–19. [Google Scholar] [CrossRef]
  32. Donos, C.; Dümpelmann, M.; Schulze-Bonhage, A. Early seizure detection algorithm based on intracranial EEG and random forest classification. Int. J. Neural Syst. 2015, 25, 1550023. [Google Scholar] [CrossRef] [PubMed]
  33. Behri, M.; Subasi, A.; Qaisar, S.M. Comparison of machine learning methods for two class motor imagery tasks using EEG in brain-computer interface. In Proceedings of the Advances in Science and Engineering Technology International Conferences (ASET), Abu Dhabi, United Arab Emirates, 6 February–5 April 2018. [Google Scholar]
  34. Orhan, U.; Hekim, M.; Ozer, M. EEG signals classification using the K-Means clustering and a multilayer perceptron neural network model. Expert Syst. Appl. 2011, 38, 13475–13481. [Google Scholar] [CrossRef]
  35. Narang, A.; Batra, B.; Ahuja, A.; Yadav, J.; Pachauri, N. Classification of EEG signals for epileptic seizures using Levenberg-Marquardt algorithm based Multilayer Perceptron Neural Network. J. Intell. Fuzzy Syst. 2018, 34, 1669–1677. [Google Scholar] [CrossRef]
  36. Gautama, T.; Mandic, D.P.; Van Hulle, M.M. A differential entropy based method for determining the optimal embedding parameters of a signal. In Proceedings of the 2003 IEEE International Conference on Acoustics, Speech, and Signal Processing, Hong Kong, China, 6–10 April 2003. [Google Scholar]
  37. Wang, C.; Ye, Z. Brightness preserving histogram equalization with maximum entropy: A variational perspective. IEEE Trans. Consum. Electron. 2005, 51, 1326–1334. [Google Scholar] [CrossRef]
  38. Kambhatla, N.; Leen, T.K. Dimension Reduction by Local Principal Component Analysis. Neural Comput. 1997, 9, 1493–1516. [Google Scholar] [CrossRef] [Green Version]
  39. Diambra, L.; de Figueiredo, J.B.; Malta, C.P. Epileptic activity recognition in EEG recording. Phys. A Stat. Mech. Appl. 1999, 273, 495–505. [Google Scholar] [CrossRef]
  40. Bhattacharyya, S.; Khasnobish, A.; Konar, A.; Tibarewala, D.N.; Nagar, A.K. Performance analysis of left/right hand movement classification from EEG signal by intelligent algorithms. In Proceedings of the 2011 IEEE Symposium on Computational Intelligence, Cognitive Algorithms, Mind, and Brain (CCMB), Paris, France, 11–15 April 2011. [Google Scholar]
  41. Nie, D.; Wang, X.W.; Shi, L.C.; Lu, B.L. EEG-based emotion recognition during watching movies. In Proceedings of the 2011 5th International IEEE/EMBS Conference on Neural Engineering, Cancun, Mexico, 27 April–1 May 2011. [Google Scholar]
  42. Liu, Y.; Sourina, O.; Nguyen, M.K. Real-Time EEG-Based Emotion Recognition and Its Applications. Transactions on Computational Science XII; Springer: Berlin/Heidelberg, Germany, 2011; p. 256277. [Google Scholar]
  43. Schirrmeister, R.; Tobias Springenberg, J.; Fiederer, L.; Glasstetter, M.; Eggensperger, K.; Tangermann, M.; Hutter, F.; Burgard, W.; Ball, T. Deep learning with convolutional neural networks for brain mapping and decoding of movement-related information from the human EEG. Hum. Brain Mapp. 2017, 38, 5391–5420. [Google Scholar] [CrossRef] [PubMed]
  44. Faust, O.; Hagiwara, Y.; Tan, J.H.; Oh, S.L.; Acharya, U.R. Deep learning for healthcare applications based on physiological signals: A review. Comput. Methods Programs Biomed. 2018, 161, 1–13. [Google Scholar] [CrossRef] [PubMed]
  45. Thomas, J.; Maszczyk, T.; Sinha, N.; Kluge, T.; Dauwels, J. Deep learning-based classification for brain-computer interfaces. In Proceedings of the 2017 IEEE International Conference on Systems, Man, and Cybernetics (SMC), Banff, AB, Canada, 5–8 October 2017. [Google Scholar]
Figure 1. Flow chart of algorithm architecture.
Figure 1. Flow chart of algorithm architecture.
Sensors 19 01631 g001
Figure 2. Accuracy in original dataset with five methods.
Figure 2. Accuracy in original dataset with five methods.
Sensors 19 01631 g002
Figure 3. Accuracy in original dataset based on LDA with five methods.
Figure 3. Accuracy in original dataset based on LDA with five methods.
Sensors 19 01631 g003
Figure 4. Accuracy in differential entropy dataset with five methods.
Figure 4. Accuracy in differential entropy dataset with five methods.
Sensors 19 01631 g004
Figure 5. Accuracy in differential entropy dataset based on LDA with five methods.
Figure 5. Accuracy in differential entropy dataset based on LDA with five methods.
Sensors 19 01631 g005
Figure 6. Confusion matrix in original dataset with RF.
Figure 6. Confusion matrix in original dataset with RF.
Sensors 19 01631 g006
Figure 7. Confusion matrix in original dataset based on LDA with RF.
Figure 7. Confusion matrix in original dataset based on LDA with RF.
Sensors 19 01631 g007
Figure 8. Confusion matrix in differential entropy dataset with LR.
Figure 8. Confusion matrix in differential entropy dataset with LR.
Sensors 19 01631 g008
Figure 9. Confusion matrix in differential entropy dataset based on LDA with SVM.
Figure 9. Confusion matrix in differential entropy dataset based on LDA with SVM.
Sensors 19 01631 g009
Table 1. Predictive performance of five methods using the original dataset.
Table 1. Predictive performance of five methods using the original dataset.
MethodRFSVM
BandDeltaThetaAlphaBetaGammaCombinedDeltaThetaAlphaBetaGammaCombined
Accuracy0.385 ± 0.0190.378 ± 0.0290.365 ± 0.0330.474 ± 0.0300.491 ± 0.0170.479 ± 0.0380.310 ± 0.0250.318 ± 0.0280.330 ± 0.0160.431 ± 0.0210.315 ± 0.0250.375 ± 0.028
Precision0.383 ± 0.0140.382 ± 0.0300.378 ± 0.0460.480 ± 0.0390.487 ± 0.0190.487 ± 0.0320.311 ± 0.0270.321 ± 0.0280.333 ± 0.0150.440 ± 0.0260.324 ± 0.0310.392 ± 0.024
Recall0.391 ± 0.0200.385 ± 0.0310.373 ± 0.0340.481 ± 0.0300.496 ± 0.0210.486 ± 0.0350.311 ± 0.0260.319 ± 0.0270.333 ± 0.0180.434 ± 0.0220.320 ± 0.0240.378 ± 0.031
F1 score0.379 ± 0.0160.373 ± 0.0290.362 ± 0.0350.465 ± 0.0290.473 ± 0.0120.474 ± 0.0410.308 ± 0.0240.315 ± 0.0280.328 ± 0.0150.429 ± 0.0210.308 ± 0.0250.372 ± 0.026
Kappa coef.0.084 ± 0.0280.074 ± 0.0450.058 ± 0.0520.219 ± 0.0490.242 ± 0.0290.227 ± 0.0510.033 ± 0.0380.020 ± 0.0400.006 ± 0.0250.322 ± 0.0350.019 ± 0.0360.069 ± 0.042
RF denotes the random forest method, and SVM denotes the support vector machine method. Kappa coef. is Cohen’s kappa coefficient. Each data field shows performance evaluation indices average ± std of 200 random splits of EEG samples.
Table 2. Predictive performance with five methods using the original dataset and Linear Discriminant Analysis (LDA).
Table 2. Predictive performance with five methods using the original dataset and Linear Discriminant Analysis (LDA).
MethodRFSVM
BandDeltaThetaAlphaBetaGammaCombinedDeltaThetaAlphaBetaGammaCombined
Accuracy0.342 ± 0.0390.298 ± 0.0430.322 ± 0.0120.393 ± 0.0350.414 ± 0.0150.537 ± 0.0280.310 ± 0.0250.318 ± 0.0280.330 ± 0.0160.451 ± 0.0200.475 ± 0.0250.475 ± 0.028
Precision0.353 ± 0.0490.306 ± 0.0500.329 ± 0.0260.374 ± 0.0440.381 ± 0.0560.510 ± 0.0400.311 ± 0.0270.321 ± 0.0280.333 ± 0.0150.449 ± 0.0260.464 ± 0.0310.492 ± 0.024
Recall0.350 ± 0.0430.304 ± 0.0440.335 ± 0.0180.386 ± 0.0280.394 ± 0.0210.530 ± 0.0280.311 ± 0.0260.319 ± 0.0270.333 ± 0.0180.434 ± 0.0220.466 ± 0.0240.478 ± 0.031
F1 score0.337 ± 0.0360.290 ± 0.0470.305 ± 0.0150.385 ± 0.0370.372 ± 0.0230.523 ± 0.0340.308 ± 0.0240.315 ± 0.0280.328 ± 0.0150.429 ± 0.0210.458 ± 0.0250.472 ± 0.026
Kappa coef0.024 ± 0.0630.043 ± 0.0630.002 ± 0.0240.204 ± 0.0410.227 ± 0.0270.329 ± 0.0390.033 ± 0.0380.020 ± 0.0400.006 ± 0.0250.362 ± 0.0350.319 ± 0.0360.269 ± 0.042
RF denotes the random forest method, and SVM denotes the support vector machine method. Kappa coef. is Cohen’s kappa coefficient. Each data field shows performance evaluation indices average ± std of 200 random splits of EEG samples.
Table 3. Predictive performance with five methods using the differential entropy dataset.
Table 3. Predictive performance with five methods using the differential entropy dataset.
MethodRFSVM
BandDeltaThetaAlphaBetaGammaCombinedDeltaThetaAlphaBetaGammaCombined
Accuracy0.525 ± 0.0250.527 ± 0.0530.513 ± 0.0440.621 ± 0.0440.627 ± 0.0410.704 ± 0.0260.568 ± 0.0120.663 ± 0.0340.601 ± 0.0150.694 ± 0.0360.681 ± 0.0170.770 ± 0.030
Precision0.530 ± 0.0210.537 ± 0.0550.529 ± 0.0450.615 ± 0.0460.620 ± 0.0470.700 ± 0.0290.568±0.0140.667 ± 0.0340.602 ± 0.0150.692 ± 0.0310.680 ± 0.0250.768 ± 0.033
Recall0.531 ± 0.0280.532 ± 0.0550.522 ± 0.0390.624 ± 0.0460.627 ± 0.0470.704 ± 0.0290.567 ± 0.0130.666 ± 0.0340.602 ± 0.0160.694 ± 0.0370.681 ± 0.0240.770 ± 0.032
F1 score0.525 ± 0.0250.527 ± 0.0530.509 ± 0.0470.614 ± 0.0460.617 ± 0.0440.699 ± 0.0290.565 ± 0.0110.663 ± 0.0350.599 ± 0.0160.690 ± 0.0380.677 ± 0.0220.767 ± 0.032
Kappa coef0.290 ± 0.0360.294 ± 0.0820.277 ± 0.0630.433 ± 0.0650.440 ± 0.0630.556 ± 0.0400.351 ± 0.0180.496 ± 0.0510.401 ± 0.0230.541 ± 0.0520.521 ± 0.0270.654 ± 0.046
RF denotes the random forest method, and SVM denotes the support vector machine method. Kappa coef. is Cohen’s kappa coefficient. Each data field shows performance evaluation indices average ± std of 200 random splits of EEG samples.
Table 4. Predictive performance with five methods using the differential entropy dataset and LDA.
Table 4. Predictive performance with five methods using the differential entropy dataset and LDA.
MethodRFSVM
BandDeltaThetaAlphaBetaGammaCombinedDeltaThetaAlphaBetaGammaCombined
Accuracy0.467 ± 0.0170.484 ± 0.0570.462 ± 0.0490.556 ± 0.0330.561 ± 0.0350.582 ± 0.0250.568 ± 0.0120.663 ± 0.0340.600 ± 0.0150.714 ± 0.0360.741 ± 0.0170.825 ± 0.032
Precision0.483 ± 0.0200.517 ± 0.0670.481 ± 0.0480.570 ± 0.0240.560 ± 0.0350.590 ± 0.0370.568 ± 0.0140.667 ± 0.0340.601 ± 0.0160.709 ± 0.0310.690 ± 0.0250.801 ± 0.034
Recall0.475 ± 0.0150.496 ± 0.0510.474 ± 0.0470.568 ± 0.0250.566 ± 0.0310.593 ± 0.0280.567 ± 0.0130.666 ± 0.0340.601 ± 0.0170.711 ± 0.0370.716 ± 0.0240.802 ± 0.031
F1 score0.453 ± 0.0230.477 ± 0.0650.454 ± 0.0490.552 ± 0.0330.555 ± 0.0350.573 ± 0.0310.565 ± 0.0110.663 ± 0.0350.598 ± 0.0160.705 ± 0.0380.677 ± 0.0220.799 ± 0.033
Kappa coef0.208 ± 0.0230.238 ± 0.0770.205 ± 0.0710.343 ± 0.0420.345 ± 0.0510.378 ± 0.0390.351 ± 0.0180.496 ± 0.0510.400 ± 0.0230.566 ± 0.0520.521 ± 0.0270.698 ± 0.049
RF denotes the random forest method, and SVM denotes the support vector machine method. Kappa coef. is Cohen’s kappa coefficient. Each data field shows performance evaluation indices average ± std of 200 random splits of EEG samples.
Table 5. Complexity in four experiments with different methods.
Table 5. Complexity in four experiments with different methods.
ExperimentMethodDeltaThetaAlphaBetaGammaCombined
Prediction performance in original datasetkNN5.215 ± 0.0915.337 ± 0.3496.077 ± 0.4085.997 ± 0.3476.205 ± 1.00325.970 ± 0.069
LR111.323 ± 4.97093.115 ± 7.21197.788 ± 3.70563.628 ± 4.62351.596 ± 8.94198.428 ± 6.571
MLP41.407 ± 14.26250.474 ± 2.85451.971 ± 1.28250.837 ± 2.30450.153 ± 2.195105.568 ± 14.086
RF4.052 ± 0.1154.497 ± 0.5334.572 ± 0.2804.982 ± 0.1854.501 ± 0.3869.544 ± 0.271
SVM19.429 ± 0.64518.244 ± 1.47519.388 ± 1.21918.135 ± 0.99317.517 ± 0.98079.412 ± 2.109
Prediction performance in original dataset based on LDAkNN2.356 ± 0.0432.310 ± 0.0402.341 ± 0.0682.329 ± 0.0382.357 ± 0.03015.060 ± 0.100
LR3.480 ± 0.1423.162 ± 0.0943.209 ± 0.0783.320 ± 0.1693.165 ± 0.07816.151 ± 0.203
MLP2.726 ± 0.0802.647 ± 0.0522.680 ± 0.0762.697 ± 0.0542.686 ± 0.04115.408 ± 0.127
RF2.845 ± 0.0892.793 ± 0.0622.836 ± 0.0962.831 ± 0.0652.815 ± 0.03615.534 ± 0.153
SVM2.850 ± 0.0752.539 ± 0.0452.533 ± 0.0762.477 ± 0.0482.483 ± 0.02415.182 ± 0.097
Prediction performance in differential entropy datasetkNN1.871 ± 0.0071.876 ± 0.0221.908 ± 0.0111.889 ± 0.0051.882 ± 0.0129.370 ± 0.022
LR5.445 ± 0.3107.340 ± 0.4059.168 ± 0.98610.321 ± 0.4269.916 ± 0.55826.932 ± 0.908
MLP6.524 ± 2.7825.348 ± 1.7194.159 ± 0.7195.115 ± 1.6404.865 ± 0.86322.145 ± 3.354
RF2.243 ± 0.0362.254 ± 0.0192.269 ± 0.0222.206 ± 0.0182.192 ± 0.0234.908 ± 0.140
SVM5.502 ± 0.0195.266 ± 0.0345.309 ± 0.0594.125 ± 0.2043.950 ± 0.21324.780 ± 0.163
Prediction performance in differential entropy dataset based on LDAkNN0.838 ± 0.0130.826 ± 0.0270.823 ± 0.0250.839 ± 0.0110.841 ± 0.0204.202 ± 0.079
LR1.001 ± 0.0231.081 ± 0.0321.134 ± 0.0311.117 ± 0.0181.097 ± 0.0264.516 ± 0.100
MLP1.187 ± 0.0231.162 ± 0.0361.168 ± 0.0381.187 ± 0.0231.184 ± 0.0154.668 ± 0.111
RF1.301 ± 0.0191.302 ± 0.0281.295 ± 0.0271.309 ± 0.0131.301 ± 0.0294.819 ± 0.143
SVM0.966 ± 0.0140.957 ± 0.0290.973 ± 0.0320.933 ± 0.0220.928 ± 0.0174.366 ± 0.079
LDA denotes the linear discriminant analysis method. kNN denotes the k-nearest neighbor method, and LR denotes the logistic method. RF denotes the random forest method, and SVM denotes the support vector machine method. Each data field shows the consumed time average ± std of 200 random splits of EEG samples.

Share and Cite

MDPI and ACS Style

Chen, D.-W.; Miao, R.; Yang, W.-Q.; Liang, Y.; Chen, H.-H.; Huang, L.; Deng, C.-J.; Han, N. A Feature Extraction Method Based on Differential Entropy and Linear Discriminant Analysis for Emotion Recognition. Sensors 2019, 19, 1631. https://doi.org/10.3390/s19071631

AMA Style

Chen D-W, Miao R, Yang W-Q, Liang Y, Chen H-H, Huang L, Deng C-J, Han N. A Feature Extraction Method Based on Differential Entropy and Linear Discriminant Analysis for Emotion Recognition. Sensors. 2019; 19(7):1631. https://doi.org/10.3390/s19071631

Chicago/Turabian Style

Chen, Dong-Wei, Rui Miao, Wei-Qi Yang, Yong Liang, Hao-Heng Chen, Lan Huang, Chun-Jian Deng, and Na Han. 2019. "A Feature Extraction Method Based on Differential Entropy and Linear Discriminant Analysis for Emotion Recognition" Sensors 19, no. 7: 1631. https://doi.org/10.3390/s19071631

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