Study on the Classification of Pulse Signal Based on the BP Neural Network

Abstract

The objectification of the pulse signal analysis is a practical problem. The classification of the pulse signal is studied based on the BP neural network. It is first analyzed how to select the characteristic factors of the pulse signal. Then the method of nondimensionalization/normalization on the pulse signal is presented to preprocess the characteristic factors. The classification of the pulse signal and the effects of the selection of characteristic factors are studied by using the normalized data and BP neural network. It is shown that nondimensionalization/normalization of the data is in favor of the training and forecasting of the network. The selection of characteristic factors affects the accuracy of forecasting obviously. The results of forecasting by selection of 8, 6 and 4 factors respectively show that the less the factors are, the worse the effects are.

Share and Cite:

Wang, S. , Jiang, J. and Lu, X. (2020) Study on the Classification of Pulse Signal Based on the BP Neural Network. Journal of Biosciences and Medicines, 8, 104-112. doi: 10.4236/jbm.2020.85010.

1. Introduction

Traditional Chinese medicine doctors diagnose a disease in four ways: observation, listening, interrogation and pulse-taking. Pulse-taking is used to diagnose a disease by touching and feeling the pulse manifestation on a human body’s surface. From the viewpoint of modern medicine, Pulse manifestation comes in fact from the impulse when the blood flows through the elastic blood vessel. Since the blood flows through all parts of the body, the pulse manifestation contains much information of the body including diseases. The impulse of blood vessel can be felt in the superficial skin such as radial artery, which is called the pulse-taking in the traditional Chinese medicine. Though the pulse-taking can diagnose diseases without pain and invasion, this kind of diagnose is related very closely to the clinical experiences of the doctor. In other words, the human factors affect the diagnosis results greatly. Therefore, many studies are focused on the objectification of pulse manifestation to realize the modernization of the pulse-taking as early as possible [1].

Kinds of instruments for pulse diagnosis with different functions and characteristics have been researched and developed and many data have been collected. Based on these data, studies on the pulse manifestation analysis and identification have been carried out, including the feature extraction and identification of single factor and multiple factors. The methods of statistical regression and artificial intelligence are applied in the analysis [2]. The former studies are mainly concentrated on two aspects: one is on the selection of pulse characteristic values and the other is the study of the classification approaches. The former is the base of the later. Clustering analysis is one of the early methods adopted in the pulse classification. This method determines the degree of similarity first by the distance formula; then the data set is divided into several clusters according to the degree of similarity. The data in the same cluster have the close degree of similarity [3]. The method of training and learning by samples is applied recently. The typical one is the classifier based on neural network which is trained by the clinical data of pulse manifestation to obtain the classifier and then is used in the classification of the newly collected pulse manifestation [4] [5]. Some are the combination of several methods, such as fuzzy analysis is combined with artificial neural network method, wavelet is combined with artificial neural network method, etc. [1] [6] [7] [8]. However, the identification of pulse manifestation is still in the stage of exploration. The selection of the characteristics of pulse has been studied and many methods have been provided. Some methods choose the characteristics of time domain or frequency domain such as cardiac cycle or frequency, the maximum pressure and tide wave; some choose the maximum power spectrum and cepstrum as the characteristics, etc.

On the above viewpoint, the selection of the pulse characteristics and the normalization method are investigated first. Then the BP neural network is used to study the identification of pulse manifestation.

2. Introduction of BP Artificial Neural Network

A BP [9] network model is consisted of input layer, middle layers and output layer. The dependent variables are input in the input layer. The data outcome from the output layer are the independent variables. The layer locates between the input and output layers are called the middle/hidden layers. The factors of the model are built by learning from the history data. The relations between dependent variables and independent variables may be determined at one time and the results are influenced few even if some dependent or independent data are lost.

The neuron is the basic unit and the processing element. A neuron, as shown in Figure 1, has many inputs X i ( n 1 ) come from the neurons in the (n − 1)th layer, but only a single output X j ( n ) that carries its information to the neurons in the (n + 1)th layer. An adjustable weight, Wij(n), representing the connecting strength, lies between the jth input branch in the nth layer and the ith neuron in the (n − 1)th layer. The basic function (net sum) of a neuron is to sum up its inputs and by means of the transfer function to produce an output [10]. Usually, an internal threshold t is introduced and subtracted from the sum. Mathematically, the net sum netj(n) of the jth neuron in the nth layer can be expressed as

n e t j n = i W i j n x i n 1 t j n (1)

Then the output value x j n can be obtained as

x j n = f ( n e t j n ) = θ j n 1 + e β j n n e t j n (2)

in which ƒ(.) is the transfer function which has several forms, such as the hyperbolic tangent, step, or sigmoid function. The sigmoid function is the most common in practical application.

The BP neural network is characterized by gaining possession of hidden layers. A BP neural network without a hidden layer is adequate to describe the system of the linearized relationship between inputs and outputs. Generally, a BP network with one hidden layer is enough for most applications. Therefore, the modified BP network model is adopted here which is a three-layer network with input layer, middle layer and output layer (Figure 1).

In the BP learning scheme, the calculated outputs in the output layer, x j q , are compared with the desired outputs, dj, to find the error, before the error signals are propagated backward through the network. The error function E is defined as [11]

E = 1 2 j = 1 p ( d j x j q ) 2 (3)

where q is the total number of layers in the network and p is the total number of the output neurons. The learning process is to adjust the learning parameters, W, t, β and θ, so that the error can be minimized and the mapping between inputs and outputs can be realized. In order to accomplish this, gradient descent technique is applied to calculate the gradient of the error with respect to each learning parameter. Then the learning parameters are changed and adjusted in the direction of the steepest descent of the error. For example, the adjustment of the weight parameter is expressed as

Δ W i j n ( T + 1 ) = η Δ E Δ W i j n (4)

where η is the learning rate and T is the iteration. There are many methods to update the parameters of the networks. Generally, the pattern learning method is commonly used for its faster convergence speed. This method updates the parameters of the network whenever the input pattern differs from the target pattern.

Figure 1. Schematic diagram of BP network. (The three hollow orange circles denotes three neurons of the middle layer, +1 in the last circle means the neurons can be added if required. The number of the neurons in the three layers can be added if required.)

One of the major problems with the BP algorithm is the slow convergence speed. A momentum factor is recommended by Lippmann to accelerate the convergence speed. Thus, Equation (4) can be converted into Equation (5).

Δ W i j n ( T + 1 ) = η Δ E Δ W i j n + γ Δ W i j n ( T ) (5)

where γ is the momentum factor and γ ≥ 0. Once the partial derivative E with respect to W is obtained, it can be substituted into Equation (5) to arrive at the training formula for the adjustment of W as

Δ W i j n ( T + 1 ) = η δ j n Δ E Δ W i j n + γ Δ W i j n ( T ) (6)

Similarly, the training formulae to adjust t, β and θ can be obtained as

Δ t j n ( T + 1 ) = η δ j n + γ Δ δ j n ( T ) (7)

Δ β j n ( T + 1 ) = η ξ j n [ x j n ( 1 x j n ) n e t j n ] + γ Δ β j n ( T ) (8)

Δ θ j n ( T + 1 ) = η ξ j n ( x j n / θ j n ) + γ Δ θ j n ( T ) (9)

in which δ j n , ξ j n are adjustment coefficients.

3. Modeling of the Network

3.1. Selection of the Characteristics of Pulse Manifestation

Generally, P wave (main wave), tide wave, dicrotic wave in a cardiac cycle are often taken as the key characteristics of pulse manifestation. Sometimes the rates of change of these parameters are also chosen as the characteristics such as the maximum slop of the rising branch, slop 1 of the decent branch (the maximum slop between the main wave and the tide wave), slop 2 of the decent branch (the maximum slop between the tide wave and the dicrotic notch), the slop between the dicrotic wave and the end of the wave (Figure 2). 8 characteristics are chosen

Figure 2. Schematic diagram of the characteristics of time domain in one cardiac cycle. (A is the origin of the pulse in a circle, B denotes the highest point the pulse, C denotes the notch of the tide wave, D is the peak of tide wave, E is the dicrotic notch, F is the peak of dicrotic wave, G is the end of the pulse in a circle.)

in this study are as follows: the amplitude of the main wave (the value of the ordinate B in Figure 2), the maximum slop in the rising branch (the maximum slop between AB in Figure 2) (Sab), slop 1 of the decent branch (the maximum slop between BC in Figure 2) (Sbc), slop 2 in the decent branch (the maximum slop between DE in Figure 2) (Sde), amplitude of the dicrotic wave (the value of the ordinate F in Figure 2) (Hf), amplitude of the dicrotic notch (the value of the ordinate E in Figure 2) (He), cardiac cycle (the duration between AG in Figure 2) (T), ratio of amplitude of the dicrotic notch to cardiac diastole (the value of the ordinate E/duration between EG) (Rr). For comparison, 6 characteristics and 4 characteristics (described in the following) are chosen from in the above characteristics to study.

The data in the following computing mainly come from the literatures [12] [13] [14] [15]. The characteristics in different literatures are slightly different, such as some gave the data of the amplitude of dicrotic notch while some gave the ratio of the amplitude of dicrotic notch to the amplitude of main wave. During the data preprocessing, the data are all converted to the amplitude of dicrotic notch. Meantime the data in the literature are very limited, some data are obtained by interpolation. The data of the normal pulse, slippery pulse, wiry pulse and thready pulse are adopted in this paper.

In the following analysis, three cases are considered to investigate the effects of different selections of characteristics: 1) The 8 characteristics described above; 2) Considering that the cardiac cycle and the amplitude of dicrotic notch can be obtained from the maximum slop in the rising branch, slop 1 in the decent branch, slop 2 in the decent branch, amplitude of dicrotic wave, the cardiac and the amplitude of dicrotic notch are not included in the second computing scheme; 3) In the third scheme, the slop 1 in the decent branch and the slop 2 in the decent branch are not considered.

The normal pulse, slippery pulse, wiry pulse and thready pulse are expressed by a four-dimensional array, respectively. That means, the output layer of the network has four neurons and each neuron has a value either 1 or 0. The values of the four neurons of the output layer determine the type of the pulse manifestation: {1, 0, 0, 0} is corresponding to the normal pulse, {0, 1, 0, 0} the slippery pulse, {0, 0, 1, 0} the wiry pulse and {0, 0, 0, 1} the thready pulse.

3.2. Selection of the Samples for Training and the Normalization of the Parameters

For the same kind of pulse, the wave form may be very similar but the absolute value of the pulse’s characteristics may be very different for different persons. Therefore, reasonable method is to adopt the dimensionless form of the characteristics in the network. According to the characteristics of the pulse manifestation, considering the value of each neuron of the network is between 0 - 1 for training and forecast easily, the minimum cardiac cycle Tm of human in normal state is taken as the character time. The character pressure Hm is determined by the requirement that the values of all the dimensionless slope in the data set should be less than 1.0. The characteristics in the data set can then be normalized by the character time and pressure. The dimensionless values of above 8 parameters are computed in the following way: main wave (Hb/Hm), the maximum slop in the rising branch (Sab × Tm/Hm), the slop 1 in the decent branch (Sbc × Tm/Hm), the slop 2 in the decent branch (Sde × Tm/Hm), amplitude of dicrotic wave (Hf/Hm), amplitude of dicrotic notch (He/Hm), cardiac cycle (T/Tm), amplitude of dicrotic notch/cardiac diastole (Rr × Tm/Hm). After such data processing, the network can be trained and used for forecast.

4. Results and Discussion

The network is trained by using 34 samples (shown in Table 1) in the data set first, and then is used to forecast by using 10 samples in the data set to test the accuracy of the network (shown in Table 2 are the data for forecasting with 8 characteristics).

During training of the network, it is required to trial many times by adjusting the parameters of the network till the accuracy is satisfied. For the data set shown in Table 1, the allowed total maximum error is adopted as 0.01, the allowed single error is 0.001, the maximum cycle number is 8000, the learning rate is 0.7, the coefficient of acceleration is 0.9. One hidden layer is adopted whose neurons are two times of the input layer.

The results show that the accuracy of forecast can be over 85% when 8 characteristics of the pulse manifestation are chosen as the input of the network. The accuracy of forecast is about 60% when the network is input 6 characteristics and it is only 50% when selecting 4 input characteristics. Therefore, to select reasonable characteristics is the key to increase the forecast accuracy of the network. Generally, the more the selected characteristics are, the better the forecast effect is. Nevertheless, more characteristics often mean the measurement is more difficult and the cost is much more. So it is required to study how many and what characteristics are the most reasonable and meanwhile easy to measure for the neural network.

Table 1. Data of pulse signal for training.

Table 2. Data of pulse signal for forecast.

5. Conclusions

Pulse diagnosis, one of the four diagnostic methods of traditional Chinese medicine, is always constrained by the human subjective factors. Therefore, the objectification of the pulse analysis attracts the attention of researchers. The classification of the pulse manifestation is studied by using the BP artificial neural network. The network is modeled by measured data. It has been studied on how to select the characteristics of the pulse manifestation and how to preprocess the data. A method of data preprocessing on how to nondimensionalize and normalize the characteristics of pulse manifestation is presented. It is shown that the data after preprocessing are more suitable for the training of the network and the increase of the forecast accuracy.

The effects of the selection of different characteristics on the classification of pulse manifestation are investigated. It is shown that the forecast accuracy increases with the increase of characteristic number.

Although the data adopted is not very much enough and so the results are limited, this study shows that the BP neural network is an effective tool for the identification of the pulse manifestation.

Conflicts of Interest

The authors declare no conflicts of interest regarding the publication of this paper.

References

[1] Yang, L.J. (2006) Study on the Pulse Analysis System and Identification of Pulse Signal by Artificial Neural Network. Master’s Thesis, Northeast Forestry University, Harbin.
[2] Yang, B., Niu, X. and Wang, Y.L. (2000) Advances of the Research on the Pulse Diagnosis Instrument and Analysis Method. Journal of Beijing University of Traditional Chinese Medicine, 23, 68-69.
[3] Yang, S. (2017) Research of Pulse Signals Extraction and Method Based on Cluster Analysis of the Pulse Manifestation. Master’s Thesis, Harbin Institute of Technology, Harbin.
[4] Wang, B.H. (1999) Study of Human Pulse System Modelling and Pulse Information Analysis. Ph.D. Thesis, Northwest Polytechnical University, Xi’an.
[5] Yan, H.X., Wang, Y.Q., Gong, A.M., et al. (2009) Application of the Artificial Neural Network in Recognition and Classification of TCM Pulses. World Science and Techology/Modernization of Traditional Chinese Medicine and Material Medica, 11, 522-526.
[6] Wang, L., Wang, K.Q., Xu, L.S., et al. (2005) Classifier of Pulse Manifestation Based on the Fuzzy Neural Network. Collection of Papers on the Application and Research of Computers in Diagnose, 84-90.
[7] Guo, H.X., Wang, B.H., Zhang, L.Q., et al. (2006) The Identification Method of Pulse Manifestation Based on Wavelet Package and BP Neural Network. Application Research of Computers, 6, 185-187.
[8] Zhang, J. (2010) The Research of Human Body Pulse Signals Extraction and Classification. Master’s Thesis, Soochou University, Suzhou.
[9] Anderson, J.A. (1995) An Introduction to Neural Networks. MIT Press, Cambridge, MA.
https://doi.org/10.7551/mitpress/3905.001.0001
[10] Fuh, K.H. and Wang, S.B. (1997) Force Modeling and Forecasting in Creep Feed Grinding Using Improved BP Neural Network. International Journal of Machine Tools and Manufacture, 37, 1167-1178.
https://doi.org/10.1016/S0890-6955(96)00012-0
[11] Lu, X.B. and Li, D.J. (1996) Application of BP Network in the Study of Debris Flow. Chinese Journal of Rock Mechanics and Engineering, 15, 766.
[12] Chen, S.Y., Wang, S.Y., Lv, Z.P., et al. (1985) Analysis of the 70 Figures of Wiry Pulse Manifestation. Journal of First Military Medical University, 5, 57-59.
[13] Chen, S.Y. and Wang, S.Y. (1982) Analysis of the 110 Figures of Normal Pulse Manifestation. Journal of First Military Medical University, 2, 332-334.
[14] Xiao, G., Li, L.Y., Li, G.H., et al. (1980) Analysis of the 188 Figures of Abnormal Pulse Manifestation. Journal of Shandong Medical College, 4, 28-36.
[15] Xiao, G., Li, L.Y., Li, G.H., et al. (1980) Analysis of the 212 Figures of Normal Pulse Manifestation. Journal of Shandong Medical College, 4, 23-27.
[16] Yang, L.J. (2006) Study on the Pulse Analysis System and Identification of Pulse Signal by Artificial Neural Network. Master’s Thesis, Northeast Forestry University, Harbin.
[17] Yang, B., Niu, X. and Wang, Y.L. (2000) Advances of the Research on the Pulse Diagnosis Instrument and Analysis Method. Journal of Beijing University of Traditional Chinese Medicine, 23, 68-69.
[18] Yang, S. (2017) Research of Pulse Signals Extraction and Method Based on Cluster Analysis of the Pulse Manifestation. Master’s Thesis, Harbin Institute of Technology, Harbin.
[19] Wang, B.H. (1999) Study of Human Pulse System Modelling and Pulse Information Analysis. Ph.D. Thesis, Northwest Polytechnical University, Xi’an.
[20] Yan, H.X., Wang, Y.Q., Gong, A.M., et al. (2009) Application of the Artificial Neural Network in Recognition and Classification of TCM Pulses. World Science and Techology/Modernization of Traditional Chinese Medicine and Material Medica, 11, 522-526.
[21] Wang, L., Wang, K.Q., Xu, L.S., et al. (2005) Classifier of Pulse Manifestation Based on the Fuzzy Neural Network. Collection of Papers on the Application and Research of Computers in Diagnose, 84-90.
[22] Guo, H.X., Wang, B.H., Zhang, L.Q., et al. (2006) The Identification Method of Pulse Manifestation Based on Wavelet Package and BP Neural Network. Application Research of Computers, 6, 185-187.
[23] Zhang, J. (2010) The Research of Human Body Pulse Signals Extraction and Classification. Master’s Thesis, Soochou University, Suzhou.
[24] Anderson, J.A. (1995) An Introduction to Neural Networks. MIT Press, Cambridge, MA.
https://doi.org/10.7551/mitpress/3905.001.0001
[25] Fuh, K.H. and Wang, S.B. (1997) Force Modeling and Forecasting in Creep Feed Grinding Using Improved BP Neural Network. International Journal of Machine Tools and Manufacture, 37, 1167-1178.
https://doi.org/10.1016/S0890-6955(96)00012-0
[26] Lu, X.B. and Li, D.J. (1996) Application of BP Network in the Study of Debris Flow. Chinese Journal of Rock Mechanics and Engineering, 15, 766.
[27] Chen, S.Y., Wang, S.Y., Lv, Z.P., et al. (1985) Analysis of the 70 Figures of Wiry Pulse Manifestation. Journal of First Military Medical University, 5, 57-59.
[28] Chen, S.Y. and Wang, S.Y. (1982) Analysis of the 110 Figures of Normal Pulse Manifestation. Journal of First Military Medical University, 2, 332-334.
[29] Xiao, G., Li, L.Y., Li, G.H., et al. (1980) Analysis of the 188 Figures of Abnormal Pulse Manifestation. Journal of Shandong Medical College, 4, 28-36.
[30] Xiao, G., Li, L.Y., Li, G.H., et al. (1980) Analysis of the 212 Figures of Normal Pulse Manifestation. Journal of Shandong Medical College, 4, 23-27.

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.