E-Health Telecommunication Systems and Networks
Vol.3 No.2(2014), Article ID:45902,9 pages DOI:10.4236/etsn.2014.32002

Mood States Recognition of Rowing Athletes Based on Multi-Physiological Signals Using PSO-SVM

Jing Wang1, Pei Lei1, Kun Wang2, Lijuan Mao2, Xinyu Chai1

1School of Biomedical Engineering, Shanghai Jiao Tong University, Shanghai, China

2School of Physical Education, Shanghai Jiao Tong University, Shanghai, China

Email: xychai@sjtu.edu.cn

Copyright © 2014 by authors and Scientific Research Publishing Inc.

This work is licensed under the Creative Commons Attribution International License (CC BY).

http://creativecommons.org/licenses/by/4.0/

Received 16 March 2014; revised 15 April 2014; accepted 13 May 2014

ABSTRACT

Athletes have various emotions before competition, and mood states have impact on the competition results. Recognition of athletes’ mood states could help athletes to have better adjustment before competition, which is significant to competition achievements. In this paper, physiological signals of female rowing athletes in preand post-competition were collected. Based on the multi-physiological signals related to preand post-competition, such as heart rate and respiration rate, features were extracted which had been subtracted the emotion baseline. Then the particle swarm optimization (PSO) was adopted to optimize the feature selection from the feature set, and combined with the least squares support vector machine (LS-SVM) classifier. Positive mood states and negative mood states were classified by the LS-SVM with PSO feature optimization. The results showed that the classification accuracy by the LS-SVM algorithm combined with PSO and baseline subtraction was better than the condition without baseline subtraction. The combination can contribute to good classification of mood states of rowing athletes, and would be informative to psychological adjustment of athletes.

Keywords:Affective Computing, Mood States Recognition, Multi-Physiological Signals, PSO, SVM

1. Introduction

For athletes, it is easy to have pressure and various emotional reactions in the competitive environment [1] . They can have different mood states during different periods of time of one week before competition [2] . Some emotion can have positive impact on the athletes, such as vigor and confidence, but some can have just the opposite impact, such as tension, anger, fatigue, depression, confusion, etc. Different mood states have diverse impact on the competition results of the athletes [3] . If the positive emotion is intense and the negative emotion is not obvious, the mood states of the athletes are considered to be positive. Otherwise, the mood states of the athletes are negative. For the latter condition, the coach and other related staff should take some actions such as psychological intervention and adjustment training before competition to help the athletes to relieve from the bad mood and take good preparations for the competition. So the examination of athlete’s behavioral, and emotional responses are an essential part of sport psychology [4] .

As an outward manifestation of psychological states, people usually express their emotion through language, intonation, facial expression, behavior, breathe and other reactions of body [5] . It is convenient to judge the emotion of one person through the face expression or gestures, but the real internal mood states of one person cannot be observed in this way if they are reluctant to express themselves obviously. However, the physiological signals are a kind of bio-electricity signals or bio-impedance signals, which are regulated by human automatic nervous system and endocrine system, and cannot be easily influenced by the society features [6] . Ekman et al. proved that autonomic nervous system activity distinguishes among emotions [7] . Picard et al. first proposed a series of methodologies for the emotion recognition from the variation of physiological signals, through application of many effective algorithms in signal processing and pattern recognition, such as feature extraction and classification. They used Fisher Projection with Sequential Floating Forward Search to classify 40 original features extracted from 4 physiological signals to recognize 8 kinds of emotion, and reached the accuracy of more than 80% [8] . Based on the same physiological data, Healey and Picard extracted 11 original features and investigated Fisher linear discriminant and the leave one out test algorithm in recognizing emotions, and found that anger was well differentiated from peaceful emotions (90% - 100%), but positive and negative valence states were difficult to distinguish (50% - 82%) [9] . In recent years, along with the development of the non-invasive detecting methods and devices, more researches engaged in this field and proved the reliability of emotion recognition from the multi-physiological signals. Kim and his colleagues collected physiological signals of 50 subjects and used SVM classifier to recognize three kinds of emotions and reached the accuracy of 78.4% [10] . Lisetti with his team used a wireless noninvasive wearable computer to collect physiological signals and mapped these data to emotional states to model the patients’ emotions for patient care [11] . To improve driving safety, Fatma and his co-workers developed a multi-model intelligent system to recognize the driver’s emotions [12] . And according to its judgment, it would use some multi-media technologies to relieve the negative moods.

The mood states of athletes are usually estimated by the observation of coach through their facial expressions or behaviors, and the judgment correctness is influenced by the athletes’ desire to express themselves [13] . Some researchers have estimated the mood states of athletes according to the function state of the athletes’ brain through event-related potentials (ERP) [14] or Electroencephalograph (EEG) [15] , and found that there are differences of characteristics of information processing, brain function and the brain nerve cell metabolic mode of athletes between different sport events and different technical levels, but the data collection and analysis are inconvenient. The traditional algorithms of feature selection are like Fisher, sequential forward selection and sequential backward selection, which are of the calculation slow and poor convergence shortcomings. The particle swarm optimization (PSO) algorithm can overcome these shortcomings with good robustness [16] . The support vector machine (SVM) is a kind of mature method of classification and the least squares support vector machine (LS-SVM) is of better speed of calculation and the same good learning performance with SVM [17] . So the combination of the two algorithms is reasonable. This paper focuses on recognizing the mood states of athletes by using their physiological signals. First, the features were extracted from the physiological signals which had been subtracted the baseline. Then the PSO algorithm was adopted to optimize the features selection from the features of multi-physiological signals, which proved to be useful to optimize the feature selection of signals, and combined with LS-SVM classifiers to recognize positive and negative mood states. A brief introduction of the algorithms is first presented, following the physiological signals collection and feature extraction method. Finally results are shown and discussed.

2. Method

2.1. Particle Swarm Optimization, PSO

The most important parts of emotion recognition are the algorithms of feature selection and classification. Feature selection includes the removal of non-informative terms according to corpus statistics, and the construction of new features. Eberhart and Kennnedy developed a kind of algorithm through simulating social behavior [16] [18] -[20] , which was particle swarm optimization, since it resembled a school of flying birds. The concept comprised in PSO is very simple, and can be implemented in a few lines of computer code. So it is used in this paper to realize the optimal selection of features.

In a particle swarm optimizer, each particle treated as a point in a D-dimensional space, adjusts its flying according to its flying experience and its companion’ flying experience. The i-th particle is represented as Xi = (xi1, xi2, xi3, …, xiD)T. The best previous position of any particle is recorded and represented as Pbesti = (pbesti1, pbesti2, pbesti3, …, pbestiD)T. The index of the best particle among the parties in the population is represented as Gbest = (gbest1, gbest2, gbest3, …, gbestD)T. The particles are manipulated according to the following equations:

(1)

(2)

where w is a inertia weight factor, usually from 0.4 to 0.9. C1 and C2 are two positive constants; rand1() and rand2() are two random functions in the range of [0, 1]. In Equation (3), the inertia weight factor can regulate to insure convergence of the PSO, which is

(3)

In this paper, the original value was got by inertia weight factor algorithm, and w was initialized as 0.729, C1 = C2 = 1.494. Usually Vi∈[-Vmax, Vmax] to make sure the particle’s location is global and the possibility of get the best fitness.

Kennedy and Eberhart published the discrete binary version of PSO in 1997 [21] , which used the binary variables to present the position of grain, and trajectories are changes in the probability that a coordinate will take on a zero or one value. The change in position then is defined by the following rule:

(4)

where the function S(v) is a sigmoid limiting transformation and rand() is a quasirandom number selected from a uniform distribution in [0.0, 1.0].

2.2. Support Vector Machine, SVM

Support vector machine was developed by Vapnik in 1963 [22] and had been introduced for solving pattern recognition problems in 1990s [23] . In this algorithm, one maps the data into a higher dimensional input and one constructs an optimal separating hyperplane in this space. This basically involves solving a quadratic programming problem, while the existence of many local minima influent gradient based training methods for neural network architectures. The essential part of this algorithm is the kernel function. Sample classification is hard to be done in a low dimensional space, but it is easy to be finished in a higher dimensional input. Using a right kernel function can reduce the computation complexity. In this paper, RBF function was used as the kernel function [24] .

For the function estimation problem, a support vector interpretation of ridge regression has been given in. This means equality type constraints instead of inequalities from the classical SVM approach is considered. So the solution is got by solving a set of linear equations instead of quadratic programming. In least squares SVM (LS-SVM) [23] the support values are proportional to the errors, which is different from that in classical SVM, where many support values are zero. In this paper, LS-SVM was used to finish the classification.

2.3. The Combination of PSO and SVM

There are two parameters to be optimized in the LS-SVM using RBF kernel function. In this paper, the feature selection was realized at the same time. Thus, the grain is in the form of binarydigit string, with three parts, γ, σ2 and feature mask to determine which feature is chosen, and the grain is as Table 1 below.

Table 1. Particle design of PSO-SVM.

The combination of PSO and SVM, for optimizing the feature selection, improved the accuracy of classification and decreased the number of the features selected. In the PSO-SVM, bigger value of the fitness function g(x) represents better adaptive ability of the grains. In this paper, the fitness function was defined as

(5)

where N is the number of feature subset of the sample; and f represents the equilibrium factor.

The flowchart of the combined algorithm is in Table 2.

3. Data Collection of Rowing Athletes

3.1. Subjects

It is considered that female athletes are more sensitive and easier to have negative mood states before competition [25] . Therefore, 22 female rowing athletes from the Rowing Team of Shanghai participated in the experiments. All subjects were native Chinese and 14 - 27 years of age. They didn’t do strenuous exercise half an hour before the experiment and they haven’t taken any drugs a week before. Consent was obtained from all subjects and awards were given for their participation. Experiments were conducted according to the ethical recommendations of the Declaration of Helsinki. The experiments were carried out twice during one week before and a few weeks after the National Rowing Championships.

3.2. Apparatus & Mood States Measurement

The portable physiological signals collecting device self-developed in our laboratory was used to detect and collect the physiological signals. It can collect electrocardiography (ECG), heart rate (HR), respiratory rate (RR), oxyhemoglobin saturation (SpO2), pulse rate (PR) and so on. The HR signal measured by the instrument is from 30 to 240 times per minute, the errors of different signals are in Table 3.

Several kinds of methods, such as questionnaires, direct observation and measurement of biochemical signals, are used to assess emotion [26] . In this paper, Profile of Mood States Standard & Brief questionnaire (POMS questionnaire) was used to assess athletes’ mood states [27] [28] . POMS questionnaire was modified and set up the norm standard for Chinese by Zhu in 1995, and it was considered as a good tool to assess emotion and its relationship with sports performance efficiency [29] . The reliability of POMS questionnaire is between 0.62 and 0.82, the average is 0.71. The POMS questionnaire measures six identifiable mood or affective states: 1) Tension, 2) Anger, 3) Fatigue, 4) Depression, 5) Vigor, 6) Confusion, 7) Esteem-related affect (Self-esteem).From the questionnaire, scores of Total Mood Disturbance (TMD) can be gotten. The higher the score is, the more negative the mood state is.

3.3. Procedures

One week before the competition and the period with no competitions, five kinds of physiological signals of the rowing athletes were collected as the baseline, which were BP, HR, RR, PR and SpO2. Before the precompetition collection, athletes were required to finish the POMS questionnaire and the reliability of POMS questionnaire was analyzed. The questionnaire inquiry and the mood states related physiological data collection of the athletes were conducted in the Shanghai Water Sports Training Center. During each data collection before the competition, 22 questionnaires were sent out. The data was collected in a resting state, without any sports before the collection. Most subjects can finish the questionnaire in 3 - 5 minutes.

3.4. Preprocessing of Dataset

According to the POMS questionnaires, physiological signals of the 16 athletes were chosen and categorized into two mood states, which were 9 samples of negative mood states before competition, 7 samples of positive

Table 2. The flowchart of the PSO-SVM.

Table 3. The error of different physiological signals.

mood states before competition. Meanwhile, the psychological signals of all the 16 athletes in resting state after the competition were set as the baseline data. Considering the individual difference of different people, the baseline data was subtracted from the signal data collected before the competition. Then 27 original features were got by feature extraction, which are shown Table 4.

4. Results

The reliability of all finished POMS questionnaires was analyzed by internal consistency test, and the standard α coefficient of subscales are 0.7 - 0.8, and the average is 0.72, which means high reliability of POMS questionnaire. The scores of subscales and the whole questionnaire finished before and after the competition of 16 chosen subjects were analyzed by principle component factor analysis. There are significant difference of the scores of subscales and the whole questionnaire finished before and after the competition (p < 0.01). So the POMS questionnaire is of high reliability and validity.

Table 4. Feature extractions of physiological signals.

The TMD scores in each questionnaire were calculated and found out 9 athletes with high TMD scores and 7 athletes with relative low TMD scores, as shown in Figures 1-3.

If the scores of vigor and esteem-related affect are high and that of other emotions are low, and the TMD score is low at the same time. The figures of section of psychological state of athletes are like the iceberg profile, which means the mood states of the athlete is positive. Otherwise, means the mood states of the athlete is negative. The figures of S1 and S2 are just like this, and their TMD scores are lowest in all subjects.

The PSO-SVM was used to classify the positive and negative emotion before competition. In this paper, 10 samples were used as the training set (5 for positive emotions and 5 for negative emotions), and the other 6 were used as the test set (2 for positive emotions and 4 for negative emotions). The results of classification of the data with subtraction of the baseline data and the data without subtraction of the baseline data is in Table 5.

Table 5 showed that the best recognition accuracy (RA) is 100% and the average RA is 94.44%, through the PSO-SVM to recognize the emotion. The classification using the data with subtraction of baseline data is better than that without the subtraction. The results using combination of different physiological signals after the optimized selection is better than the single physiological signal. In the training phase of the feature selection, difference between systolic pressure and diastolic pressure, mean HR, difference between the maximum and the minimum of RR were chosen as the best set of features, which means that they are advantageous to the recognition of positive and negative emotion through physiological signals.

5. Discussion

Profile of mood states questionnaire is worked out by the team of McNair in 1971 [30] . It consists 6 subscales (Tension-Anxiety, Vigor-Activity, Depression-Dejection, Fatigue-Inertia, Anger-Hostility, Confusion-Bewilderment), and each subscale consists several adjectives. Morgan and his colleagues used this questionnaire to assess the mood states of athletes from 1978 and pointed it out that the POMS questionnaire was an useful tool to assess the mood states of athletes and predict the results of competition [31] . Then Grove and his team published the Profile of Mood States Standard & Brief questionnaire in 1992, and added the subscale of Esteem-related affect, with totally 40 adjectives [28] . The adjectives of different subscale are mixed. Subjects were required to choose the closely levels weighing the adjectives according to their own mood states in a week lately. The TMD scores of athletes before and after competition have significant difference using this questionnaire. Then the questionnaire we use was modified and set up the norm standard for Chinese by Zhu. The reliability is between 0.62 and 0.82, the average is 0.71, and it is a good tool to assess mood states of athletes in China. The application of POMS questionnaire in China showed the test-retest reliability of it was 0.428 - 0.680, which was satisfactory [32] .

From Table 4 we can see, the best RA is 100% and the average RA is 94.44%, through the PSO-SVM to recognize the emotion. Although the data of physiological signals are not exactly the same, the average accuracy of nearly 95% is an improvement, while the accuracy was no more than 90% in other researches [9] [10] . The classification using the data with subtraction of baseline is better than that without the subtraction, which demonstrated that the baseline data subtraction is meaningful for effective recognition of athletes’ mood states.

The time of data collections in first phase was settled during one week before the competition, when most athletes’ mood states were influenced by the coming competition seriously [2] . Considering not disturbing the athletes’ preparation for the coming competition, the collection of physiological signals was only twice. This is relative small datasets for mood states recognition regarding training the classification algorithms. In the future, more emotion related multi-physiological data could be reliably obtained, to improve the recognition performance of the PSO-SVM model.

Due to the nature of emotion recognition problem, it is impossible to prevent the false recognition of positive and negative mood states. However we can try to integrate different modalities that the emotions can be recog-

Figure 1. Total mood disturbance of female rowing athletes.

Figure 2. Mood states of female rowing athletes with low TMD scores.

Figure 3. Mood states of female rowing athletes with high TMD scores.

nized from such as facial expressions, and vocal intonation and try to make a better combination of recognition algorithms for higher recognition accuracy.

6. Conclusion

The recognition of athletes’ mood states can help athletes to have better adjustment before competition, which is necessary to have better competition performance. In this paper, mood states related multi-physiological data of

Table 5. Recognition accuracy of the mood states of the athletes before competition using PSO-SVM.

ALL: BP, HR, RR, PR, SpO2.

female rowing athletes were collected before and after the competition, according to a standard questionnaire for evaluating mood states of athletes. The multi-physiological signals and implemented the baseline data subtraction were used, which finally were classified by the particle swarm optimization algorithm combined with least squares support vector machine classifiers. The result showed that the classification accuracy of the PSO-SVM model with baseline subtraction was better than the condition without baseline subtraction. Further, more subjects will be recruited in this study since the sample size is relatively small. And the relationship between physiological signals and pre-competition emotions of male athletes will be investigated. Also, other effective algorithms in pattern recognition are under investigation. It is hoped that these results are informative to pre-competition psychological adjustment of rowing athletes, thus making the PSO-SVM mood states recognition model more practical for athletes.

Acknowledgements

The authors are grateful to the athletevolunteers. Thisresearch is supported by The Shanghai Municipal Physical Culture Bureau Scientific andTechnological Project (11JT010); Shanghai Science and Technology Development Funding (10231204300).

References

  1. Jones, G. (1995) More than Just a Game: Research Developments and Issues in Competitive Anxiety in Sport. British Journal of Psychology, 4, 449-478. http://dx.doi.org/10.1111/j.2044-8295.1995.tb02565.x
  2. Hanton, S., Thomas, O. and Maynard, I. (2004) Competitive Anxiety Responses in the Week Leading up to Competition: The Role of Intensity, Direction and Frequency Dimensions. Psychology of Sport and Exercise, 2, 169-181. http://dx.doi.org/10.1016/S1469-0292(02)00042-0
  3. Lazarus, R.S. (2000) How Emotions Influence Performance in Competitive Sports. The Sport Psychologist, 3, 299-252.
  4. Woodman, T. and Hardy, L. (2001) Stress and Anxiety. Handbook of Sport Psychology. 290-318.
  5. Cowie, R., Douglas-Cowie, E., Tsapatsoulis, N., Votsis, G., Kollias, S., Fellenz, W. and Taylor, J.G. (2001) Emotion Recognition in Human-Computer Interaction. IEEE Signal Processing Magazine, 1, 32-80. http://dx.doi.org/10.1109/79.911197
  6. Kreibig, S.D. (2010) Autonomic Nervous System Activity in Emotion: A Review. Biological Psychology, 3, 394-421. http://dx.doi.org/10.1016/j.biopsycho.2010.03.010
  7. Ekman, P., Levenson, R.W. and Friesen, W.V. (1983) Autonomic Nervous System Activity Distinguishes among Emotions. Science, 4616, 1208-1210. http://dx.doi.org/10.1126/science.6612338
  8. Picard, R.W. (1997) Affective Computing. The MIT Press, Cambridge, 170.
  9. Healey, J. and Picard, R. (1998) Digital Processing of Affective Signals. Proceedings of the 1998 IEEE International Conference on Acoustics, Speech and Signal Processing, Seattle, Washington.
  10. Kim, K.H., Bang, S. and Kim, S. (2004) Emotion Recognition System Using Short-Term Monitoring of Physiological Signals. Medical and Biological Engineering and Computing, 3, 419-427. http://dx.doi.org/10.1007/BF02344719
  11. Lisetti, C., Nasoz, F., LeRouge, C., Ozyer, O. and Alvarez, K. (2003) Developing Multimodal Intelligent Affective Interfaces for Tele-Home Health Care. International Journal of Human-Computer Studies, 1, 245-255. http://dx.doi.org/10.1016/S1071-5819(03)00051-X
  12. Nasoz, F., Lisetti, C.L. and Vasilakos, A.V. (2010) Affectively Intelligent and Adaptive Car Interfaces. Information Sciences, 20, 3817-3836. http://dx.doi.org/10.1016/j.ins.2010.06.034
  13. Zheng, J. (2006) Review on the Multidimensional Studies of Competitive Anxiety. Journal of Shenyang Physical EducationInstitute, 3, 58-60 (in Chinese).
  14. Lv, Y. and Ma, Q. (1995) Research on the Characteristics of Information Processing of Athletes in the Brain with the Events Relative Potentials (ERP). Journal of Tianjin Institute of Physical Education, 4, 1-2 (in Chinese).
  15. Zhang, Z., Zhou, W., Cai, Z. and Cui, S. (2002) The Characteristics of Brain Function in Chinese Elite Table Tennis Players. Chinese Journal of Sports Medicine, 5, 452-457 (in Chinese).
  16. Eberhart, R. and Kennedy, J. (1995) A New Optimizer Using Particle Swarm Theory. Proceedings of the Sixth International Symposium on Micro Machine and Human Science, Nagoya, Japan. http://dx.doi.org/10.1016/j.ins.2010.06.034
  17. Suykens, J., Lukas, L., Van Dooren, P., De Moor, B. and Vandewalle, J. (1999) Least Squares Support Vector Machine Classifiers: A Large Scale Algorithm. European Conference on Circuit Theory and Design, ECCTD.
  18. Kennedy, J. and Eberhart, R. (1995) Particle Swarm Optimization. Proceedings of IEEE International Conference on Neural Networks, Perth, Australia. http://dx.doi.org/10.1109/ICNN.1995.488968
  19. Eberhart, R., Simpson, P. and Dobbins, R. (1996) Computational Intelligence PC Tools. Academic Press Professional, Inc.
  20. Kennedy, J. (1997) The Particle Swarm: Social Adaptation of Knowledge. IEEE International Conference on Evolutionary Computation, Indianapolis, Indiana.
  21. Kennedy, J. and Eberhart, R.C. (1997) A Discrete Binary Version of the Particle Swarm Algorithm. Systems, Man, and Cybernetics, 1997 Computational Cybernetics and Simulation, 1997 IEEE International Conference, 5, 4104-4108.
  22. Vapnik, V. (1963) Pattern Recognition Using Generalized Portrait Method. Automation and Remote Control, 774-780.
  23. Suykens, J.A. and Vandewalle, J. (1999) Least Squares Support Vector Machine Classifiers. Neural Processing Letters, 3, 293-300. http://dx.doi.org/10.1023/A:1018628609742
  24. Osuna, E., Freund, R. and Girosit, F. (1997) Training Support Vector Machines: An Application to Face Detection. Computer Vision and Pattern Recognition, 1997 Proceedings, 1997 IEEE Computer Society Conference, Los Alamitos, 17-19 June 1997, 130-136.
  25. Fu, M., Yu, Z. and Zhou, X. (2004) Research on Athlete Mental State and Influence Factors Pre-Competition. Sport Science, 2, 48-50 (in Chinese).
  26. Liu, L. and Shi, Y. (2009) The Definition, State and Developing Trend of Clinical Sport Psychology. China Sport Science and Technology, 6, 76-82 (in Chinese).
  27. McNair, D.M., Lorr, M. and Droppleman, L.F. (1971) Profile of Mood States. Educational and Industrial Testing Service.
  28. Grove, J.R. and Prapavessis, H. (1992) Preliminary Evidence for the Reliability and Validity of an Abbreviated Profile of Mood States. International Journal of Sport Psychology, 2, 93-109.
  29. Zhu, B. (1995) Brief Introduction of POMS Scale and Its Model for China. Journal of Tianjin Institute of Physical Education, 1, 35-37 (in Chinese).
  30. Lorr, M., McNair, D. and Droppleman, L. (1971) Manual: Profile of Mood States. Educational and Industrial Testing Service, San Diego.
  31. Morgan, W. (1979) Prediction of Performance in Athletics. Coach, Athletes and the Sport Psychologist, 173-186.
  32. Cai, S. (2010) Validity and Reliability of the POMS Applied in the Graduates in Sport Major. Journal of West Anhui University, 005, 145-148 (in Chinese).