Datasets:
add bibtex (#4)
Browse files* add bibtex
* update CI
- .github/workflows/ci.yaml +0 -2
- wrime.py +20 -0
.github/workflows/ci.yaml
CHANGED
@@ -3,8 +3,6 @@ name: CI
|
|
3 |
on:
|
4 |
push:
|
5 |
branches: [main]
|
6 |
-
paths-ignore:
|
7 |
-
- 'README.md'
|
8 |
pull_request:
|
9 |
branches: [main]
|
10 |
paths-ignore:
|
|
|
3 |
on:
|
4 |
push:
|
5 |
branches: [main]
|
|
|
|
|
6 |
pull_request:
|
7 |
branches: [main]
|
8 |
paths-ignore:
|
wrime.py
CHANGED
@@ -24,6 +24,26 @@ _CITATION = """\
|
|
24 |
pages = "2095--2104",
|
25 |
abstract = "We annotate 17,000 SNS posts with both the writer{'}s subjective emotional intensity and the reader{'}s objective one to construct a Japanese emotion analysis dataset. In this study, we explore the difference between the emotional intensity of the writer and that of the readers with this dataset. We found that the reader cannot fully detect the emotions of the writer, especially anger and trust. In addition, experimental results in estimating the emotional intensity show that it is more difficult to estimate the writer{'}s subjective labels than the readers{'}. The large gap between the subjective and objective emotions imply the complexity of the mapping from a post to the subjective emotion intensities, which also leads to a lower performance with machine learning models.",
|
26 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
"""
|
28 |
|
29 |
_DESCRIPTION = """\
|
|
|
24 |
pages = "2095--2104",
|
25 |
abstract = "We annotate 17,000 SNS posts with both the writer{'}s subjective emotional intensity and the reader{'}s objective one to construct a Japanese emotion analysis dataset. In this study, we explore the difference between the emotional intensity of the writer and that of the readers with this dataset. We found that the reader cannot fully detect the emotions of the writer, especially anger and trust. In addition, experimental results in estimating the emotional intensity show that it is more difficult to estimate the writer{'}s subjective labels than the readers{'}. The large gap between the subjective and objective emotions imply the complexity of the mapping from a post to the subjective emotion intensities, which also leads to a lower performance with machine learning models.",
|
26 |
}
|
27 |
+
|
28 |
+
@inproceedings{suzuki-etal-2022-japanese,
|
29 |
+
title = "A {J}apanese Dataset for Subjective and Objective Sentiment Polarity Classification in Micro Blog Domain",
|
30 |
+
author = "Suzuki, Haruya and
|
31 |
+
Miyauchi, Yuto and
|
32 |
+
Akiyama, Kazuki and
|
33 |
+
Kajiwara, Tomoyuki and
|
34 |
+
Ninomiya, Takashi and
|
35 |
+
Takemura, Noriko and
|
36 |
+
Nakashima, Yuta and
|
37 |
+
Nagahara, Hajime",
|
38 |
+
booktitle = "Proceedings of the Thirteenth Language Resources and Evaluation Conference",
|
39 |
+
month = jun,
|
40 |
+
year = "2022",
|
41 |
+
address = "Marseille, France",
|
42 |
+
publisher = "European Language Resources Association",
|
43 |
+
url = "https://aclanthology.org/2022.lrec-1.759",
|
44 |
+
pages = "7022--7028",
|
45 |
+
abstract = "We annotate 35,000 SNS posts with both the writer{'}s subjective sentiment polarity labels and the reader{'}s objective ones to construct a Japanese sentiment analysis dataset. Our dataset includes intensity labels (\textit{none}, \textit{weak}, \textit{medium}, and \textit{strong}) for each of the eight basic emotions by Plutchik (\textit{joy}, \textit{sadness}, \textit{anticipation}, \textit{surprise}, \textit{anger}, \textit{fear}, \textit{disgust}, and \textit{trust}) as well as sentiment polarity labels (\textit{strong positive}, \textit{positive}, \textit{neutral}, \textit{negative}, and \textit{strong negative}). Previous studies on emotion analysis have studied the analysis of basic emotions and sentiment polarity independently. In other words, there are few corpora that are annotated with both basic emotions and sentiment polarity. Our dataset is the first large-scale corpus to annotate both of these emotion labels, and from both the writer{'}s and reader{'}s perspectives. In this paper, we analyze the relationship between basic emotion intensity and sentiment polarity on our dataset and report the results of benchmarking sentiment polarity classification.",
|
46 |
+
}
|
47 |
"""
|
48 |
|
49 |
_DESCRIPTION = """\
|