March24, 2023

Abstract Volume: 2 Issue: 2 ISSN:

Deep Learning for Classification of Sleep EEG Data During the Coronavirus Disease 2019 Epidemic

Bin Zhao*, Jinming Cao1


1. School of Information and Mathematics, Yangtze University, Jingzhou, Hubei, China.

*Corresponding Author: Dr. Bin Zhao, School of Science, Hubei University of Technology, Wuhan, Hubei, China.


Received Date:  January 25, 2021

Publication Date: February 01, 2021          


Abstract
Sleep is an important part of the body's recuperation and energy accumulation, and the quality of sleep also has a significant impact on people's physical and mental state during the epidemic of Coronavirus Disease. It has attracted increasing attention on how to improve the quality of sleep and reduce the impact of sleep-related diseases on health. The electroencephalogram (EEG) signals collected during sleep belong to spontaneous EEG signals. Spontaneous sleep EEG signals can reflect the body's changes, which is also an basis for diagnosis and treatment of related diseases. Therefore, the establishment of an effective model for classifying sleep EEG signals is an important auxiliary tool for evaluating sleep quality, diagnosing and treating sleep-related diseases.

In this paper, outliers of each kind of original data were detected and deleted by using the principle of 3 Sigma and k-means clustering + Euclidean distance detection method. Then, using the Adam algorithm with adaptive learning rate constructs the Softmax multi-classification BP neural network the model, and relatively high accuracy and AUC values were finally obtained during the coronavirus disease 2019 epidemic.

Keywords- Sleep EEG; Deep learning; Softmax function; Adam algorithm; Multiple classification problem.

Deep Learning for Classification of Sleep EEG Data During the Coronavirus Disease 2019 Epidemic

Introduction

The sleep process is a complex process of dynamic changes. According to R&K, the international standard for the interpretation of sleep stages, there are different states during sleep.

In addition to the awake period, the sleep cycle consists of two alternate sleep states, namely rapid eye movement(REM), and non-REM.

In non-REM, according to the gradual change of sleep state from shallow to deep, it is further divided into sleep, I, II, III, and sleep IV. Sleep stage III and sleep stage IV can be combined with a deep sleep stage during the coronavirus disease 2019 epidemic.

Figure 1 shows the time series of EEG signals corresponding to different sleep stages, from top to bottom, namely, wakefulness, sleep I, sleep II, deep sleep, and REM.

Figure 1 shows the characteristics of EEG signals that vary in different sleep stages during the epidemic of Coronavirus Disease.


Figure 1

Automatic staging based on EEG signals can reduce the artificial burden on expert physicians and it is a useful auxiliary tool for assessing sleep quality, diagnosing, and treating sleep-related diseases. In this paper, Python is used to build a neural network, and design a sleep staging prediction model. Based on a few training samples as possible, it can obtain relatively high prediction accuracy.


Overview of BP Neural Network

An artificial neural network gets widely used in some aspects, including pattern recognition, function approximation, data compression, data classification, data prediction, etc. [1-6] BP neural the network is an algorithm in ANN. Figure  2 Computing the gradient. shows the basic structure of the BP neural network.


Figure 2


Introduction to activation function and algorithm:

ReLU function:  ReLU = max(0, x)

Softmax function: Si = ei / Σ j ej


Figure 3 shows the operating principle.

Figure 3. Principle of Softmax function.


Adam Algorithm

Refer Figure 7

Upgrade parameters.

Where a is the step length, b?b21 Î[0,1) is the moment estimation of the exponential decay rate, and f[q ] is the random objective function of the parameter q.

In this paper, the whole training process of the improved BP neural network model is:

Step 1: Parameter initialization. Determine the node number of the network input layer, hidden layer, and output layer, and initialize the weight, the bias between each layer, then initialize the learning rate.

Step 2: Calculate the output of the hidden layer. The hidden layer output is calculated by the weight and bias between the input vector and the connection layer and the ReLU activation function.

Step 3: Calculate the output of the output layer. through the hidden layer output and connection weights and bias and the Softmax activation function calculate the predicted output.

Step 4: Calculate Softmax cross-entropy as cost function according to predicted output and real label.

Step 5: Backpropagation, and this paper use the adaptive learning rate Adam algorithm [7] to update the weight and bias.

Step 6: Determine whether the cost reaches the error range or the number of iterations. If not, return step 2.

 

Data Description and Preprocessing

Data were collected from 3000 sleep EEG samples and their labels are taken from different healthy adults during overnight sleep. The first is a "known label," which represents the different sleep stages in digital form: stage wake (6), rapid eye movement (5), sleep I (4), sleep II (3), and deep sleep (2); The second to fifth columns are the characteristic parameters calculated from the original time sequence, successively including "Alpha", "Beta", "Theta" and "Delta", which correspond to the energy proportion of EEG signals in the frequency range of "8-13Hz", "14-25Hz", "4-7Hz" and "0.5-4Hz" respectively. The unit of characteristic parameters is the percentage.

This paper gives raw data stage wake (6), and REM. (5), sleep I (4), sleep II (3), deep sleep (2), four brain electrical signal energy proportion of five sleep stages of brain electrical signal energy proportion, but the original data are generally given there are some abnormal data outliers or missing value, therefore we to each index of the five sets of data make a boxplot graph, the result is as follows in figure 4.


Figure 4 BoxPlot of each sleeping period

Five sleep period by Figure 4 shows, there are some outliers, namely, these all belong to the original data of abnormal points, this paper uses the principle of 3 sigma’s [8] will each table of data deletion, then after the processing of five tables to merge, and then using the K-means clustering + Euclidean distance outlier test [9], to find and remove outliers, as shown in figure 5, a total of 2883 samples after pretreatment.


Figure 5. Diagram of outliers.

 

Model Training and Prediction

We divided the data into a training set and the test is set in a ratio of 2:8. We trained and tested the data using the traditional decision tree model [10] (DT) and support vector machine model (SVM), and compared the classification effect with the accuracy rate and AUC value as evaluation indexes. The results are as follows:


Table 1. Comparison table of several classifications accuracy rates.

Classifier               Accuracy rate

DT                          0.59

SVM                        0.68

Adam-BPNNet          0.73


As can be seen from Table 1, the accuracy of Adam-BPNNet in several traditional methods relatively high. Figure 6 shows the ROC curve of each classification method.


Figure 6. ROC curve of each classification method.


Table 2. Comparison table of AUC values of different classification models  

Classifier                 AUC

DT                          0.77

SVM                        0.80

Adam-BPNNet          0.83

Table 2 shows that in the Adam-BPNNet model, fewer training sets will still have a better classification effect. The prediction result is the best classification effect obtained after many experiments. In the early stage of experiment, the classification accuracy is low. After repeated debugging of the number of hidden layers and nodes, the best AUC value of this experiment is 0.83.


Conclusion

This study is mainly based on theoretical research and combines theory with practice. This paper uses BP neural network based on an adaptive learning rate Adam algorithm for data classification. Also, this paper selects Softmax as the activation function in the output layer, enabling the model to have good self-learning and self-adaptive ability. The most important thing is that the network has good generalization ability. When designing the classifier, it should consider whether the network can correctly classify the objects it needs to classify and whether the network can correctly classify the unseen or noise-polluted patterns after training. The classification AUC value of this study is 0.83, which is scientific to a certain extent and can be used as an auxiliary tool for the evaluation of sleep quality, diagnosis, and treatment of sleep-related diseases during the coronavirus disease 2019 epidemic.


Conflict of Interest

We have no conflict of interests to disclose and the manuscript has been read and approved by all named authors.

Acknowledgment

This work was supported by the Philosophical and Social Sciences Research Project of Hubei Education Department (19Y049), and the Staring Research Foundation for the Ph.D. of Hubei University of Technology (BSQD2019054), Hubei Province, China.


References

1.Yun Qi. “Experimental Study on NDVI Inversion Using GPS-R Remote Sensing Based on BP Neural Network[D]”. Xuzhou: China University of Mining and Technology, 2018.

2.Jiao Wang. “Study of Data Acquistion System for Electric Stair-Climbing Wheelchair Seat Position Regulating Mechanism[D]”. Tianjin: Hebei University of Technology, 2016.

3.Yongfeng Cao, Yanjun Zhao. “Research on Computer Intelligent Image Recognition echnology based on GA-BP Neural Network[J]”. Applied Laser, 2017, 37(1) : 139-143. 

4.Faezeh Rasi Marzabadi, Mehran Masdari, Mohammad Reza Soltani. “Application of Artificial   Neural Network in Aerodynamic Coefficient Prediction of Subducted Airfoil[J]”. Journal of Research in Science and Engineering , 2020, 2(1) : 13-17.

5.Xiaomin Wang, Rong Chen, Bin Qiao. “Application of BP Neural Network in Tea Disease Classification and Recognition[J]”. Guizhou Science 2020, 38(4) : 93-96.

6.Reza Behmanesh, Iman Rahimi. “The Optimized Regression Neural Network Combined with Experimental Design and Regression for Control Chart Prediction[J]”. 2020, 2(1): 8-12.

7.Kingma DP, Ba J. Adam: “A Method for Stochastic Optimization[C]”. 3rd International Conference for Learning Representations. San Diego, 2015.

8.Lin Lou. “Design and Implementation of Anomaly Detection System of Web User Behaviors[D]”. Zhejiang University, 2018.

9.Hua Jiang, Feng Ji, Huijiao Wang, Xin Wang, Yidi Luo. “Improved K-means Algorithm for Ocean Data Anomaly Detection[J]”. Computer Engineering and Design, 2018, 39(10) :3132-3136.

10.Hang Li. “Statistical Learning Methods (in Chinese)”. Beijing: Tsinghua University Press, 2012.

 

Volume 2 Issue 2 February 2021

©All rights reserved by Dr. Bin Zhao.

Figure 1

Figure 2

Figure 3

Figure 4

Figure 5

Figure 6

Figure 7