slvnwhrl commited on
Commit
992a8fd
·
verified ·
1 Parent(s): 028140b

add citation info to readme

Browse files
Files changed (1) hide show
  1. README.md +30 -1
README.md CHANGED
@@ -35,4 +35,33 @@ model_path = "slvnwhrl/gbert-mask-sentiment"
35
  gbert_mask = pipeline("sentiment-analysis", model=model_path, tokenizer=model_path)
36
 
37
  gbert_mask("insert some text in German") # ready to roll
38
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  gbert_mask = pipeline("sentiment-analysis", model=model_path, tokenizer=model_path)
36
 
37
  gbert_mask("insert some text in German") # ready to roll
38
+ ```
39
+
40
+ ### Citation
41
+ If you use this model in your research, please cite the [paper](https://aclanthology.org/2024.wassa-1.13/) using:
42
+
43
+ ```
44
+ @inproceedings{wehrli-etal-2024-guiding,
45
+ title = "Guiding Sentiment Analysis with Hierarchical Text Clustering: Analyzing the {G}erman {X}/{T}witter Discourse on Face Masks in the 2020 {COVID}-19 Pandemic",
46
+ author = "Wehrli, Silvan and
47
+ Ezekannagha, Chisom and
48
+ Hattab, Georges and
49
+ Boender, Tamara and
50
+ Arnrich, Bert and
51
+ Irrgang, Christopher",
52
+ editor = "De Clercq, Orph{\'e}e and
53
+ Barriere, Valentin and
54
+ Barnes, Jeremy and
55
+ Klinger, Roman and
56
+ Sedoc, Jo{\~a}o and
57
+ Tafreshi, Shabnam",
58
+ booktitle = "Proceedings of the 14th Workshop on Computational Approaches to Subjectivity, Sentiment, {\&} Social Media Analysis",
59
+ month = aug,
60
+ year = "2024",
61
+ address = "Bangkok, Thailand",
62
+ publisher = "Association for Computational Linguistics",
63
+ url = "https://aclanthology.org/2024.wassa-1.13",
64
+ pages = "153--167",
65
+ abstract = "Social media are a critical component of the information ecosystem during public health crises. Understanding the public discourse is essential for effective communication and misinformation mitigation. Computational methods can aid these efforts through online social listening. We combined hierarchical text clustering and sentiment analysis to examine the face mask-wearing discourse in Germany during the COVID-19 pandemic using a dataset of 353,420 German X (formerly Twitter) posts from 2020. For sentiment analysis, we annotated a subsample of the data to train a neural network for classifying the sentiments of posts (neutral, negative, or positive). In combination with clustering, this approach uncovered sentiment patterns of different topics and their subtopics, reflecting the online public response to mask mandates in Germany. We show that our approach can be used to examine long-term narratives and sentiment dynamics and to identify specific topics that explain peaks of interest in the social media discourse.",
66
+ }
67
+ ```