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 Epidemic of Coronavirus Disease. # Introduction he 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 # 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][2][3][4][5][6] BP neural the network is an algorithm in ANN. Figure 2 shows the basic structure of the BP neural network. 1 + ? t t ( ) 1 ? ? ? t t f g ? ? Computing the gradient. ( ) t t t g m m ? ? + ? ? ? 1 1 1 1 ? ? Update biased first moment estimate. ( ) 2 2 1 2 1 t t t g v v ? ? + ? ? ? ? ? Upgrade biased second moment estimate. ( ) t t t v v 2 1 ?? ? ? Compute bias-corrected second draw moment estimate. ? ? ? ? + ? ? t t t t v m ?- 1 - Upgrade parameters. Where ? is the step length, 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, bias between each layer, then initialize 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: Back propagation, 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. # III. 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. 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 sigmas [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. # IV. Model Training and Prediction We divided the data into a training set and test 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: As can be seen from Table 1, the accuracy of Adam-BPNNet in several traditional methods is relatively high. Figure 6 shows the ROC curve of each classification method. 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. V. # 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 selflearning 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 auxiliary tool for the evaluation of sleep quality, diagnosis and treatment of sleep-related diseases. # Conflict of Interest We have no conflict of interests to disclose and the manuscript has been read and approved by all named authors. ![Learning for Classification of Sleep EEG Data during the Epidemic of Coronavirus Disease Mingzhe E ? , Jinming Cao ? & Bin Zhao ? 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 during the Epidemic of Coronavirus Disease. 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.](image-2.png "Deep") ![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.](image-3.png "") 1![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.Figure1shows the characteristics of EEG signals vary in different sleep stages during the epidemic of Coronavirus Disease.](image-4.png "Figure 1") 1![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.Figure1shows the characteristics of EEG signals vary in different sleep stages during the epidemic of Coronavirus Disease.](image-5.png "Figure 1") 1![Figure 1: The sequence of sleep EEG signals in sleep stages. 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 as few training samples as possible, it can obtain relatively high prediction accuracy. II.](image-6.png "Figure 1 :") 23![Figure 2: Basic structure diagram of BP neural network. Introduction to activation function and algorithm: ReLU function: ) , 0 ( max ReLU x =](image-7.png "Figure 2 :Figure 3") 3![Figure 3: Principle of Softmax function. Adam algorithm: 0](image-8.png "Figure 3 :") ![Compute bias-corrected first moment estimate.](image-9.png "") ![the moment estimation of the exponential decay rate, and ( ) ? f is the random objective function of the parameter ? .](image-10.png "") ![(a) Stage wake. (b) REM. (c) Sleep I. (d) Sleep II. (e) Deep sleep.](image-11.png "") 4![Figure 4: Boxplot of each sleeping period.](image-12.png "Figure 4 :") 5![Figure 5: Diagram of outliers.](image-13.png "Figure 5 :") ![(a) Two-layer BPNNet-ROC. (b) Three-layer BPNNet-ROC.](image-14.png "") 6![Figure 6: ROC curve of each classification method.](image-15.png "Figure 6 :") 1ClassifierAccuracy rateDT0.59SVM0.68Adam-BPNNet0.73 2ClassifierAUCDT0.77SVM0.80Adam-Bennett0.83Table 2 shows that in the Adam-BPNNet model,fewer training sets will still have a better classificationeffect. K © 2020 Global Journals Deep Learning for Classification of Sleep EEG Data during the Epidemic of Coronavirus Disease * Experimental Study on NDVI Inversion using GPS-R Remote Sensing Based on BP Neural Network YunQi 2018 Xuzhou China University of Mining and Technology * Study of Data Acquistion System for Electric Stair-Climbing Wheelchair Seat Position Regulating Mechanism JiaoWang 2016 Hebei University of Technology * Research on Computer Intelligent Image Recognition echnology based on GA-BP Neural Network YongfengCao YanjunZhao 2017 37 * Mohammad Reza Soltani. Application of Artificial Neural Network in Aerodynamic Coefficient Prediction of Subducted Airfoil MehranFaezeh Rasi Marzabadi Masdari Journal of Research in Science and Engineering 2020 1 * Application of BP Neural Network in Tea Disease Classification and Recognition XiaominWang RongChen BinQiao * Guizhou Science 2020 4 * The Optimized Regression Neural Network Combined with Experimental Design and Regression for Control Chart Prediction RezaBehmanesh ImanRahimi 2020 * A Method for Stochastic Optimization DPKingma JBa Adam 3rd International Conference for Learning Representations San Diego 2015 * Design and Implementation of Anomaly Detection System of Web User Behaviors LinLou * Improved K-means Algorithm for Ocean Data Anomaly Detection HuaJiang FengJi HuijiaoWang XinWang YidiLuo Computer Engineering and Design 39 10 2018 * Statistical Learning Methods (in Chinese) HangLi 2012 Tsinghua University Press Beijing