Casting Multi-Label Emotion Classification As Span-Prediction

Total Page:16

File Type:pdf, Size:1020Kb

Casting Multi-Label Emotion Classification As Span-Prediction SpanEmo: Casting Multi-label Emotion Classification as Span-prediction Hassan Alhuzali Sophia Ananiadou National Centre for Text Mining Department of Computer Science, The University of Manchester, United Kingdom fhassan.alhuzali@postgrad.,[email protected] Abstract fication (Ying et al., 2019; Baziotis et al., 2018; Yu et al., 2018; Badaro et al., 2018; Mulki et al., Emotion recognition (ER) is an important task 2018; Mohammad et al., 2018; Yang et al., 2018) in Natural Language Processing (NLP), due to its high impact in real-world applications do not effectively capture emotion-specific associa- from health and well-being to author profiling, tions, which can be useful for prediction, as well consumer analysis and security. Current ap- as learning of association between emotion labels proaches to ER, mainly classify emotions inde- and words in a sentence. In addition, standard pendently without considering that emotions approaches in emotion classification treat individ- can co-exist. Such approaches overlook poten- ual emotion independently. However, emotions tial ambiguities, in which multiple emotions are not independent; a specific emotive expression overlap. We propose a new model “SpanEmo” casting multi-label emotion classification as can be associated with multiple emotions. The span-prediction, which can aid ER models to existence of association/correlation among emo- learn associations between labels and words in tions has been well-studied in psychological the- a sentence. Furthermore, we introduce a loss ories of emotions, such as Plutchik’s wheels of function focused on modelling multiple co- emotion (Plutchik, 1984) that introduces the notion existing emotions in the input sentence. Exper- of mixed and contrastive emotions. For example, iments performed on the SemEval2018 multi- “joy” is close to “love” and “optimism”, instead of label emotion data over three language sets “anger” and “sadness”. (i.e., English, Arabic and Spanish) demon- strate our method’s effectiveness. Finally, we present different analyses that illustrate the # Sentence GT benefits of our method in terms of improving S1 well my day started off great anger, dis- the model performance and learning meaning- the mocha machine wasn’t gust, joy, ful associations between emotion classes and working @ mcdonalds. sadness words in the sentence1. S2 I’m doing all this to make sure joy, love, 1 Introduction you smiling down on me bro. optimism Emotion is essential to human communication, thus Table 1: Example Tweets from SemEval-18 Task 1. GT emotion recognition (ER) models have a host of ap- represents the ground truth labels. plications from health and well-being (Alhuzali and Ananiadou, 2019; Aragon´ et al., 2019; Chen Consider S1 in Table1, which contains a mix of et al., 2018) to consumer analysis (Alaluf and Il- positive and negative emotions, although it is more louz, 2019; Herzig et al., 2016) and user profil- negative oriented. This can be observed clearly via ing (Volkova and Bachrach, 2016; Mohammad and the ground truth labels assigned to this example, Kiritchenko, 2013), among others. Interest in this where the first part of this sentence only expresses a area has given rise to new NLP approaches aimed positive emotion (i.e., joy), while the other part ex- at emotion classification, including single-label presses negative emotions. For example, clue words and multi-label emotion classification. Most ex- like “great” are more likely to be associated with isting approaches for multi-label emotion classi- “joy”, whereas “wasn’t working” are more likely to be associated with negative emotions. Learn- 1Source code is available at https://github.com/ hasanhuz/SpanEmo ing such associations between emotion labels and 1573 Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics, pages 1573–1584 April 19 - 23, 2021. ©2021 Association for Computational Linguistics words in a sentence can help ER models to predict tions into a single score for each token. We then the correct labels. S2 further highlights that certain used the scores for the label tokens as predictions emotions are more likely to be associated with each for the corresponding emotion label. The green other. Mohammad and Bravo-Marquez(2017) also boxes at the top of the FFN illustrate the positive observed that negative emotions are highly asso- label set, while the red ones illustrate the negative ciated with each other, while less associated with label set for multi-label emotion classification. We positive emotions. Based on these observations, we now turn to describing our framework in detail. seek to answer the following research questions: i) how to enable ER models to learn emotion-specific associations by taking into account label informa- CLS C1 C2 ... Cm SEP W1 W2 ... Wn tion and ii) how to benefit from the multiple co- existing emotions in a multi-label emotion data Feed Forward Network set with the intention of learning label correlations. Our contributions are summarised as follows: BERT Encoding I. a novel framework casting the task of multi-label emotion classification as a span-prediction prob- lem. We introduce “SpanEmo” to train the model CLS C1 C2 ... Cm SEP W1 W2 ... Wn to take into consideration both the input sentence and a label set (i.e., emotion classes) for select- Classes (C) Input (Si) ing a span of emotion classes in the label set as the Figure 1: Illustration of our proposed framework output. The objective of SpanEmo is to predict emo- (SpanEmo). tion classes directly from the label set and capture associations corresponding to each emotion. 2.2 Our Method (SpanEmo) II. a loss function, modelling multiple co-existing N emotions for each input sentence. We make use of Let f(si; yi)gi=1 be a set of N examples with the the label-correlation aware loss (LCA)(Yeh et al., corresponding emotion labels of C classes, where m 2017), originally introduced by Zhang and Zhou si denotes the input sentence and yi 2 f0; 1g (2006). The objective of this loss function is to represents the label set for si. As shown in Fig- maximise the distance between positive and nega- ure1, both the label set and the input sentence were tive labels, which is learned directly from the multi- passed into the encoder BERT (Devlin et al., 2019). label emotion data set. The encoder received two segments: the first cor- III. a large number of experiments and analyses responds to the set of emotion classes, while the both at the word- and sentence-level, demonstrating second refers to the input sentence. The hidden T × D 2 the strength of SpanEmo for multi-label emotion representations (Hi 2 R ) for each input classification across three languages (i.e. English, sentence and the label set were obtained as follows: Arabic and Spanish). The rest of the paper is organised as follows: sec- Hi = Encoder([CLS] + jCj + [SEP] + si); (1) tion2 describes our methodology, while section3 where f[CLS], [SEP]g are special tokens and jCj de- discusses experimental details. We evaluate the notes the size of emotion classes. Feeding both proposed method and compare it to related meth- segments to the encoder has a few advantages. ods in section4. Section5 reports on the analysis First, the encoder can interpolate between emotion of results, while section6 reviews related work. classes and all words in the input sentence. Second, We conclude in section7. a hidden representation is generated both for words 2 Methodology and emotion classes, which can be further used to understand whether the encoder can learn associa- 2.1 Framework tion between the emotion classes and words in the Figure1 presents our framework ( SpanEmo). Given input sentence. Third, SpanEmo is flexible because an input sentence and a set of classes, a base en- its predictions are directly produced from the first coder was employed to learn contextualised word segment corresponding to the emotion classes. representations. Next, a feed forward network 2T and D denote the input length and dimensional size, (FFN) was used to project the learned representa- respectively. 1574 We further introduced a feed-forward network where α 2 [0; 1] denotes the weight used to control (FFN) consisting of a non-linear hidden layer with the contribution of each part to the overall loss. a Tanh activation (fi(Hi)) as well as a position D 3 Experiments vector pi 2 R , which was used to compute a dot product between the output of fi and pi. As 3.1 Implementation Details our task involved a multi-label emotion classifica- We used PyTorch (Paszke et al., 2017) for imple- tion, we added a sigmoid activation to determine mentation and ran all experiments on an Nvidia whether classi was the correct emotion label or not. GeForce GTX 1080 with 11 GB memory. We It should be mentioned that the use of the position also trained BERT utilising the open-source vector is quite similar to how start and end vec- BASE Hugging-Face implementation (Wolf et al., 2019). tors are defined in transformer-based models for For experiments related to Arabic, we chose “bert- question-answering. Finally, the span-prediction base-arabic” developed by Safaya et al.(2020), tokens were obtained from the label segment and while selecting “bert-base-spanish-uncased” devel- then compared with the ground truth labels since oped by Canete˜ et al.(2020) for Spanish. All three there was a 1-to-1 correspondence between the la- models were trained on the same hyper-parameters bel tokens and the original emotion labels. with a fixed initialisation seed, including a feature ^y = sigmoid(FFN(Hi)); (2) dimension of 786, a batch size of 32, a dropout rate of 0:1, an early stop patience of 10 and 20 epochs. 2.3 Label-Correlation Aware (LCA) Loss Adam was selected for optimisation (Kingma and Following Yeh et al.(2017), we employed the label- Ba, 2014) with a learning rate of 2e-5 for the BERT correlation aware loss, which takes a vector of true- encoder, and a learning rate of 1e-3 for the FFN.
Recommended publications
  • Emotion Detection in Twitter Posts: a Rule-Based Algorithm for Annotated Data Acquisition
    2020 International Conference on Computational Science and Computational Intelligence (CSCI) Emotion detection in Twitter posts: a rule-based algorithm for annotated data acquisition Maria Krommyda Anastatios Rigos Institute of Communication and Computer Systems Institute of Communication and Computer Systems Athens, Greece Athens, Greece [email protected] [email protected] Kostas Bouklas Angelos Amditis Institute of Communication and Computer Systems Institute of Communication and Computer Systems Athens, Greece Athens, Greece [email protected] [email protected] Abstract—Social media analysis plays a key role to the person that provided the text and it is categorized as positive, understanding of the public’s opinion regarding recent events negative, or neutral. Such analysis is mainly used for movies, and decisions, to the design and management of advertising products and persons, when measuring their appeal to the campaigns as well as to the planning of next steps and mitigation actions for public relationship initiatives. Significant effort has public is of interest [4] and require extended quantities of text been dedicated recently to the development of data analysis collected over a long period of time from different sources to algorithms that will perform, in an automated way, sentiment ensure an unbiased and objective output. analysis over publicly available text. Most of the available While this technique is very popular and well established, research work, focuses on binary categorizing text as positive or with many important use cases and applications, there are negative without further investigating the emotions leading to that categorization. The current needs, however, for in-depth analysis other equally important use cases where such analysis fail to of the available content combined with the complexity and multi- provided the needed information.
    [Show full text]
  • QUESTION 20 Despair We Next Have to Consider the Vices Opposed to Hope
    QUESTION 20 Despair We next have to consider the vices opposed to hope: first, despair (desperatio) (question 20) and, second, presumption (praesumptio) (question 21). On the first topic there are four questions: (1) Is despair a sin? (2) Can despair exist without unbelief? (3) Is despair the greatest of sins? (4) Does despair arise from listlessness (acedia)? Article 1 Is despair a sin? It seems that despair is not a sin (desperatio not sit peccatum): Objection 1: As is clear from Augustine in De Libero Arbitrio, every sin involves turning toward some changeable good, combined with turning away from the unchangeable good. But despair does not involve turning toward any changeable good. Therefore, it is not a sin. Objection 2: What arises from a good root does not seem to be a sin, since, as Matthew 7:18 says, “A good tree cannot bring produce bad fruits.” But despair seems to proceed from a good root, viz., fear of God, or horror at the magnitude of one’s sins. Therefore, despair is not a sin. Objection 3: If despair were a sin, then, in the case of the damned, their despairing would be a sin. But this is not imputed to them as a sin (non imputatur eis ad culpam); instead, it is imputed to their being damned. Therefore, it is not imputed as a sin to those who are in this life, either (neque viatoribus imputatur ad culpam). And so despair is not a sin. But contrary to this: That through which men are induced to sin seems to be not only a sin, but a principle of sins.
    [Show full text]
  • University Basic Needs Insecurity: a National #Realcollege Survey Report
    APRIL 2019 College and University Basic Needs Insecurity: A National #RealCollege Survey Report AUTHORS: Sara Goldrick-Rab, Christine Baker-Smith, Vanessa Coca, Elizabeth Looker and Tiffani Williams Executive Summary NEARLY 86,000 STUDENTS PARTICIPATED. THE RESULTS The #RealCollege survey is the nation’s largest annual INDICATE: assessment of basic needs security among college students. The survey, created by the Hope Center • 45% of respondents were food for College, Community, and Justice (Hope Center), insecure in the prior 30 days specifically evaluates access to affordable food and housing. This report describes the results of the • 56% of respondents were #RealCollege survey administered in the fall of 2018 at housing insecure in the previous year 123 two- and four-year institutions across the United States. • 17% of respondents were homeless in the previous year Rates of basic needs insecurity are higher for students attending two-year colleges compared to those attending four-year colleges. Rates of basic needs insecurity are higher for marginalized students, including African Americans, students identifying as LGBTQ, and students who are independent from The Hope Center thanks the their parents or guardians for financial aid purposes. Lumina Foundation, the Jewish Students who have served in the military, former foster Foundation for Education of youth, and students who were formerly convicted of a crime are all at greater risk of basic needs insecurity. Women, the City University Working during college is not associated with a lower of New York, the Chicago risk of basic needs insecurity, and neither is receiving City Colleges, the Institute for the federal Pell Grant; the latter is in fact associated with higher rates of basic needs insecurity.
    [Show full text]
  • Machine Learning Based Emotion Classification Using the Covid-19 Real World Worry Dataset
    Anatolian Journal of Computer Sciences Volume:6 No:1 2021 © Anatolian Science pp:24-31 ISSN:2548-1304 Machine Learning Based Emotion Classification Using The Covid-19 Real World Worry Dataset Hakan ÇAKAR1*, Abdulkadir ŞENGÜR2 *1Fırat Üniversitesi/Teknoloji Fak., Elektrik-Elektronik Müh. Bölümü, Elazığ, Türkiye ([email protected]) 2Fırat Üniversitesi/Teknoloji Fak., Elektrik-Elektronik Müh. Bölümü, Elazığ, Türkiye ([email protected]) Received Date : Sep. 27, 2020 Acceptance Date : Jan. 1, 2021 Published Date : Mar. 1, 2021 Özetçe— COVID-19 pandemic has a dramatic impact on economies and communities all around the world. With social distancing in place and various measures of lockdowns, it becomes significant to understand emotional responses on a great scale. In this paper, a study is presented that determines human emotions during COVID-19 using various machine learning (ML) approaches. To this end, various techniques such as Decision Trees (DT), Support Vector Machines (SVM), k-nearest neighbor (k-NN), Neural Networks (NN) and Naïve Bayes (NB) methods are used in determination of the human emotions. The mentioned techniques are used on a dataset namely Real World Worry dataset (RWWD) that was collected during COVID-19. The dataset, which covers eight emotions on a 9-point scale, grading their anxiety levels about the COVID-19 situation, was collected by using 2500 participants. The performance evaluation of the ML techniques on emotion prediction is carried out by using the accuracy score. Five-fold cross validation technique is also adopted in experiments. The experiment works show that the ML approaches are promising in determining the emotion in COVID- 19 RWWD.
    [Show full text]
  • The Effects of an Emotion Strengthening Training Program On
    BALCI ÇELİK / Duyguları Güçlendirme Eğitimi Programı’nın Hemşirelerin ... • 793 Th e Eff ects of an Emotion Strengthening Training Program on the Optimism Level of Nurses Seher BALCI ÇELİK* Abstract Th e aim of this study is to investigate the eff ects of emotion strengthening as a training programme for optimistic for nurses. Th e experimental and control group of this rese- arch has totally composed of 20 nurses. A pre-test post-test research model with control group was been used in this research. Nurses’ optimistic levels have been measured by ‘Optimistic Scale’ which was developed by Balcı and Yılmaz (2002). In order to test that, meaningful diff erences between the scores of pre-test and post-test within both control and experimental group Mann Whitey U and Wilcoxon Signed Rank test were applied for statisical analysis. It was found that this emotional strengthening training had positive eff ects on levels of optimistic for nurses. Th e findings have been discussed in the light of literature, and some suggestions have been made. Key Words Emotion Strengthening Training Program, Nurse, Optimistic, Optimistic Scale. * Correspondence: Ondokuz Mayıs University, Faculty of Education, Department of Education Sciences, Kurupelit 55139 Samsun-Turkey / E-mail: [email protected] Kuram ve Uygulamada Eğitim Bilimleri / Educational Sciences: Th eory & Practice 8 (3) • September 2008 • 793-804 © 2008 Eğitim Danışmanlığı ve Araştırmaları İletişim Hizmetleri Tic. Ltd. Şti. 794 • EDUCATIONAL SCIENCES: THEORY & PRACTICE As internal mechanisms emotions are psychological signs of how an individual feels. Th ey develop in situations which call for an individual’s life style or behavioral pattern.
    [Show full text]
  • Using an Ambiguous Cue Paradigm to Assess Cognitive Bias in Gorillas (Gorilla Gorilla Gorilla) During a Forage Manipulation
    ABC 2017, 4(1):70-83 Animal Behavior and Cognition DOI: 10.12966/abc.06.02.2017 ©Attribution 3.0 Unported (CC BY 3.0) Using an Ambiguous Cue Paradigm to Assess Cognitive Bias in Gorillas (Gorilla gorilla gorilla) during a Forage Manipulation Molly C. McGuire1, Jennifer Vonk1*, Grace Fuller2, & Stephanie Allard2 1Oakland University, Department of Psychology, Rochester, MI, USA 2Detroit Zoological Society, Royal Oak, MI USA *Corresponding author (Email: [email protected]) Citation – McGuire, M. C., Vonk, J., Fuller, G., & Allard, S. (2017). Using an ambiguous cue paradigm to assess cognitive bias in gorillas (Gorilla gorilla gorilla) during a forage manipulation. Animal Behavior and Cognition, 4(1), 70–83. doi: 10.12966/abc.06.02.2017 Abstract - In nonhumans, ‘optimism’ is often defined as responding to an ambiguous item in the same manner as to items previously associated with reward (or lack of punishment), and “pessimism” is defined as responding to an ambiguous item in the same manner as to items previously associated with a lack of reward (or with punishment). We measured the degree of “optimism” and “pessimism” in three captive male western lowland gorillas (Gorilla gorilla gorilla) during four consecutive two-week periods in which the amount of available forage material (mulberry, Moraceae or alfalfa, Medicago sativa) was manipulated. We assessed cognitive bias using an ambiguous cue paradigm for the first time. Pairs of two-dimensional shapes were presented on a touch-screen computer in a forced choice task in which one shape was always reinforced (P), one was never reinforced (N), and one was reinforced half the time, making it ambiguous (A).
    [Show full text]
  • Joy, Distress, Hope, and Fear in Reinforcement Learning (Extended Abstract)
    Joy, Distress, Hope, and Fear in Reinforcement Learning (Extended Abstract) Elmer Jacobs Joost Broekens Catholijn Jonker Interactive Intelligence, Interactive Intelligence, Interactive Intelligence, TU Delft TU Delft TU Delft Delft, The Netherlands Delft, The Netherlands Delft, The Netherlands [email protected] [email protected] [email protected] ABSTRACT orbitofrontal cortex, reward representation, and (subjective) In this paper we present a mapping between joy, distress, affective value (see [14]). hope and fear, and Reinforcement Learning primitives. Joy While most research on computational modeling of emo- / distress is a signal that is derived from the RL update sig- tion is based on cognitive appraisal theory [9], our work is nal, while hope/fear is derived from the utility of the current different in that we aim to show a direct mapping between state. Agent-based simulation experiments replicate psycho- RL primitives and emotions, and assess the validity by repli- logical and behavioral dynamics of emotion including: joy cating psychological findings on emotion dynamics, the lat- and distress reactions that develop prior to hope and fear; ter being an essential difference with [5]. We believe that fear extinction; habituation of joy; and, task randomness before affectively labelling a particular RL-based signal, it that increases the intensity of joy and distress. This work is essential to investigate if that signal behaves according to distinguishes itself by assessing the dynamics of emotion in what is known in psychology and behavioral science. The an adaptive agent framework - coupling it to the literature extent to which a signal replicates emotion-related dynamics on habituation, development, and extinction.
    [Show full text]
  • Emotion Classification Based on Biophysical Signals and Machine Learning Techniques
    S S symmetry Article Emotion Classification Based on Biophysical Signals and Machine Learning Techniques Oana Bălan 1,* , Gabriela Moise 2 , Livia Petrescu 3 , Alin Moldoveanu 1 , Marius Leordeanu 1 and Florica Moldoveanu 1 1 Faculty of Automatic Control and Computers, University POLITEHNICA of Bucharest, Bucharest 060042, Romania; [email protected] (A.M.); [email protected] (M.L.); fl[email protected] (F.M.) 2 Department of Computer Science, Information Technology, Mathematics and Physics (ITIMF), Petroleum-Gas University of Ploiesti, Ploiesti 100680, Romania; [email protected] 3 Faculty of Biology, University of Bucharest, Bucharest 030014, Romania; [email protected] * Correspondence: [email protected]; Tel.: +40722276571 Received: 12 November 2019; Accepted: 18 December 2019; Published: 20 December 2019 Abstract: Emotions constitute an indispensable component of our everyday life. They consist of conscious mental reactions towards objects or situations and are associated with various physiological, behavioral, and cognitive changes. In this paper, we propose a comparative analysis between different machine learning and deep learning techniques, with and without feature selection, for binarily classifying the six basic emotions, namely anger, disgust, fear, joy, sadness, and surprise, into two symmetrical categorical classes (emotion and no emotion), using the physiological recordings and subjective ratings of valence, arousal, and dominance from the DEAP (Dataset for Emotion Analysis using EEG, Physiological and Video Signals) database. The results showed that the maximum classification accuracies for each emotion were: anger: 98.02%, joy:100%, surprise: 96%, disgust: 95%, fear: 90.75%, and sadness: 90.08%. In the case of four emotions (anger, disgust, fear, and sadness), the classification accuracies were higher without feature selection.
    [Show full text]
  • A Guide for Nurturing Hope, Resilience and Happiness Pasiàka Style
    I AM A guide for nurturing hope, resilience and happiness Pasi\ ka style. By Philip Siataga Acknowledgements Fakatu’amelie innovation fund Before anything else is said, sincere thanks are due to Manase Lua and Monique Faleafa and the awesome Le Va team, for inspiration, encouragement and support. Without which the I AM approach would not have developed to this point. I would like to thank my friends and colleagues Wiremu Gray Ngai Tahu, Ngati Porou (Mana Facilitation Ltd) and Paddy Pawson (Adventure Therapy) for invaluable support, insightful commentary and precious time spent sharing your hearts and minds. Special acknowledgement is due to Maui Paraki (Humble Enterprises) and to Andrew Smith (About Life ltd) whose lives are inspirational. To Alan and Alice Va’a, who continue to also serve so many in the true spirit of grace and humility – much respect. To my family, with mountains of love and gratitude, I can not thank you enough. And to, Sophia and Talia, wonderful daughters, thank you for making my journey one of enduring happiness. I am blessed with the joy of a fathers pride. Many thanks are due to Fuimaono Karl Pulotu-Endemann and Dr Francis Agnew, who inspire innovation and integrity from those of us privileged to have journeyed with them. I must also acknowledge the Occasional paper on negotiated space and thank Karlo Mila Schaaf and Maui Hudson for their insightful theorising which has boosted my own desire to plant this work in the va. To the fantastic crew at Waipuna Trust, my warmest thanks for your support and your many kindnesses along the way.
    [Show full text]
  • Hope and Anger As Mediators Between Collective Action Frames and Participation in Collective Mobilization: the Case of 15-M
    Journal of Social and Political Psychology jspp.psychopen.eu | 2195-3325 Original Research Reports Hope and Anger as Mediators Between Collective Action Frames and Participation in Collective Mobilization: The Case of 15-M Anna Wlodarczyk* ab, Nekane Basabe c, Darío Páez b, Larraitz Zumeta b [a] Escuela de Psicología, Universidad Católica del Norte, Antofagasta, Chile. [b] Department of Social Psychology and Methodology of Behaviour Sciences, University of the Basque Country, San Sebastián, Spain. [c] Department of Social Psychology and Methodology of Behaviour Sciences, University of the Basque Country, Vitoria, Spain. Abstract The study set out to integrate collective action models and emphasize the role of emotions. Whereas the importance of anger is indisputable, relatively little attention has been paid to the role of positive emotions, such as hope, in collective action research. Hence, the aim of the study was to explore the role of hope and anger as drivers of participation and involvement in collective mobilizations. A cross-sectional field study (N = 638) conducted right after the emergence of the 15-M socio-political protest movement in Spain assessed the emotions and beliefs of both demonstrators and those who took no part in the active mobilization. We hypothesized that anger and hope would sequentially mediate the relationship between collective action frames and participation in collective action. Furthermore, to test this premise, we ran two alternative sequential mediation models based on the social identity model of collective action (SIMCA) and the encapsulated model of social identity in collective action (EMSICA), but with emotions as mediators between collective action frames and intensity of participation.
    [Show full text]
  • Research-Based Practice with Women Who Have Had Miscarriages
    CMcal Scholarship Research- based Practice with Women Who Have Had Miscarriages Kristen M. Swanson Purpose: To summarize a research-based description of what it is like to miscarry and to recommend an empirically tested theory of caring for women who have experienced miscarriage. Design: The research program included three phases: interpretive theory generation, descriptive survey and instrument development, and experimental testing of a theory-based intervention. Methods: Research methods included interpretive phenomenologE factor analysis, and ANCOVA. Findings: A theory of caring and a model of what it is like to miscarry were generated, refined, and tested. A case study shows one woman’s response to miscarrying and illustrates clinical application of the caring theory. Conclusions: The Miscarriage Model is a useful framework for anticipating the variety of responses women have to miscarrying. The caring theory is an effective and sensitive guide to clinical practice with women who miscarry. IMAGE:JOURNAL OF NURSINGSCHOLARSHIP, 1999; 31 :4,339-345.01999 SIGMA THETATAU INTERNATIONAL. [Key words: caring, miscarriage, theory construction, counseling] t least one in five pregnancies ends in miscarriage-the program of inquiry about miscarriage and its aftermath. An unplanned, unexpected ending of pregnancy before the important contribution of the pilot study was the conclusion that time of expected fetal viability (Hall, Beresford, & a woman’s feelings about miscarriage could be understood only Quinones, 1987). Women’s responses range from relief in the context of what being pregnant and having a miscarriage to devastation with much variability in the time required meant to her. For example, if being pregnant was perceived as a Ato achieve resolution.
    [Show full text]
  • DEAP: a Database for Emotion Analysis Using Physiological Signals
    IEEE TRANS. AFFECTIVE COMPUTING 1 DEAP: A Database for Emotion Analysis using Physiological Signals Sander Koelstra, Student Member, IEEE, Christian M¨uhl, Mohammad Soleymani, Student Member, IEEE, Jong-Seok Lee, Member, IEEE, Ashkan Yazdani, Touradj Ebrahimi, Member, IEEE, Thierry Pun, Member, IEEE, Anton Nijholt, Member, IEEE, Ioannis Patras, Member, IEEE Abstract—We present a multimodal dataset for the analysis of human affective states. The electroencephalogram (EEG) and peripheral physiological signals of 32 participants were recorded as each watched 40 one-minute long excerpts of music videos. Participants rated each video in terms of the levels of arousal, valence, like/dislike, dominance and familiarity. For 22 of the 32 participants, frontal face video was also recorded. A novel method for stimuli selection is proposed using retrieval by affective tags from the last.fm website, video highlight detection and an online assessment tool. An extensive analysis of the participants’ ratings during the experiment is presented. Correlates between the EEG signal frequencies and the participants’ ratings are investigated. Methods and results are presented for single-trial classification of arousal, valence and like/dislike ratings using the modalities of EEG, peripheral physiological signals and multimedia content analysis. Finally, decision fusion of the classification results from the different modalities is performed. The dataset is made publicly available and we encourage other researchers to use it for testing their own affective state estimation methods. Index Terms—Emotion classification, EEG, Physiological signals, Signal processing, Pattern classification, Affective computing. ✦ 1 INTRODUCTION information retrieval. Affective characteristics of multi- media are important features for describing multime- MOTION is a psycho-physiological process triggered dia content and can be presented by such emotional by conscious and/or unconscious perception of an E tags.
    [Show full text]