avishaig commited on
Commit
b8a656b
·
1 Parent(s): 6a31723

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +114 -0
README.md CHANGED
@@ -9,3 +9,117 @@ size_categories:
9
  - 1K<n<10K
10
  ---
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - 1K<n<10K
10
  ---
11
 
12
+ # Dataset Card for Claim Stance Dataset
13
+
14
+ ## Table of Contents
15
+
16
+ - [Dataset Summary](#dataset-summary)
17
+ - [Dataset Structure](#dataset-structure)
18
+ - [Licensing Information](#licensing-information)
19
+ - [Citation Information](#citation-information)
20
+ - [Notes](#notes)
21
+
22
+ ## Dataset Summary
23
+
24
+ This dataset contains 2,394 labeled Wikipedia claims for 55 topics. The dataset includes the stance (Pro/Con) of each claim towards the topic,
25
+ as well as fine-grained annotations, based on the semantic model of [Stance Classification of Context-Dependent Claims](https://aclanthology.org/E17-1024/) (topic target,
26
+ topic sentiment towards its target, claim target, claim sentiment towards its target, and the relation between the targets).
27
+
28
+ The dataset is divided into a training set (25 topics, 1,039 claims) and a test set (30 topics, 1,355 claims).
29
+
30
+ ## Dataset Structure
31
+
32
+ * topicId - internal topic ID
33
+ * split - train or test
34
+ * topicText - the topic text
35
+ * topicTarget - sentiment target of topic
36
+ * topicSentiment - topic sentiment towards its target (1:positive/-1:negative)
37
+ * claims.claimId - claim internal ID
38
+ * claims.stance - PRO or CON
39
+ * claims.claimCorrectedText - the corrected version of the claim
40
+ * claims.claimOriginalText - the original version of the claim
41
+ * claims.Compatible - is the claim compatible with the semantic model of [Stance Classification of Context-Dependent Claims](https://aclanthology.org/E17-1024/)? (yes/no)
42
+
43
+ The following fine-grained annotations are specified only for "compatible" claims
44
+ * claims.claimTarget.text - claim sentiment target text (in the corrected version of the claim)
45
+ * claims.claimTarget.span.start - 0,
46
+ * claims.claimTarget.span.end - 31
47
+ * claims.claimSentiment - claim's sentiment towards its target (1:positive/-1:negative)
48
+ * claims.targetsRelation - relation between claim target and topic target ((1:consistent/-1:contrastive))
49
+
50
+ ## Licensing Information
51
+
52
+ The datasets are released under the following licensing and copyright terms:
53
+ * (c) Copyright [Wikipedia](https://en.wikipedia.org/wiki/Wikipedia:Copyrights#Reusers.27_rights_and_obligations)
54
+ * (c) Copyright IBM 2014. Released under [CC-BY-SA 3.0](http://creativecommons.org/licenses/by-sa/3.0/)
55
+
56
+ ## Citation Information
57
+
58
+ If you use this dataset, please cite the following paper:
59
+
60
+ ```
61
+ @inproceedings{bar-haim-etal-2017-stance,
62
+ title = "Stance Classification of Context-Dependent Claims",
63
+ author = "Bar-Haim, Roy and
64
+ Bhattacharya, Indrajit and
65
+ Dinuzzo, Francesco and
66
+ Saha, Amrita and
67
+ Slonim, Noam",
68
+ editor = "Lapata, Mirella and
69
+ Blunsom, Phil and
70
+ Koller, Alexander",
71
+ booktitle = "Proceedings of the 15th Conference of the {E}uropean Chapter of the Association for Computational Linguistics: Volume 1, Long Papers",
72
+ month = apr,
73
+ year = "2017",
74
+ address = "Valencia, Spain",
75
+ publisher = "Association for Computational Linguistics",
76
+ url = "https://aclanthology.org/E17-1024",
77
+ pages = "251--261",
78
+ abstract = "Recent work has addressed the problem of detecting relevant claims for a given controversial topic. We introduce the complementary task of Claim Stance Classification, along with the first benchmark dataset for this task. We decompose this problem into: (a) open-domain target identification for topic and claim (b) sentiment classification for each target, and (c) open-domain contrast detection between the topic and the claim targets. Manual annotation of the dataset confirms the applicability and validity of our model. We describe an implementation of our model, focusing on a novel algorithm for contrast detection. Our approach achieves promising results, and is shown to outperform several baselines, which represent the common practice of applying a single, monolithic classifier for stance classification.",
79
+ }
80
+ ```
81
+
82
+ Improved stance classification results on this dataset were published in:
83
+
84
+ ```
85
+ @inproceedings{bar-haim-etal-2017-improving,
86
+ title = "Improving Claim Stance Classification with Lexical Knowledge Expansion and Context Utilization",
87
+ author = "Bar-Haim, Roy and
88
+ Edelstein, Lilach and
89
+ Jochim, Charles and
90
+ Slonim, Noam",
91
+ editor = "Habernal, Ivan and
92
+ Gurevych, Iryna and
93
+ Ashley, Kevin and
94
+ Cardie, Claire and
95
+ Green, Nancy and
96
+ Litman, Diane and
97
+ Petasis, Georgios and
98
+ Reed, Chris and
99
+ Slonim, Noam and
100
+ Walker, Vern",
101
+ booktitle = "Proceedings of the 4th Workshop on Argument Mining",
102
+ month = sep,
103
+ year = "2017",
104
+ address = "Copenhagen, Denmark",
105
+ publisher = "Association for Computational Linguistics",
106
+ url = "https://aclanthology.org/W17-5104",
107
+ doi = "10.18653/v1/W17-5104",
108
+ pages = "32--38",
109
+ abstract = "Stance classification is a core component in on-demand argument construction pipelines. Previous work on claim stance classification relied on background knowledge such as manually-composed sentiment lexicons. We show that both accuracy and coverage can be significantly improved through automatic expansion of the initial lexicon. We also developed a set of contextual features that further improves the state-of-the-art for this task.",
110
+ }
111
+ ```
112
+
113
+ ## Notes
114
+
115
+ (1) Claim annotations and the experiments reported in [Stance Classification of Context-Dependent Claims](https://aclanthology.org/E17-1024/) and [Improving Claim Stance Classification with Lexical Knowledge Expansion and Context Utilization](https://aclanthology.org/W17-5104/)
116
+ are based on the corrected version of the claim. See [A Benchmark Dataset for Automatic Detection of Claims and Evidence in the Context of Controversial Topics](https://aclanthology.org/W14-2109/) for description of generating
117
+ corrected version for claims. The original version is the claim as it is found in the clean version of
118
+ the article, with no further editing.
119
+
120
+ (2) The topics and claims partially overlap with the CE-EMNLP-2015 dataset:
121
+ Common topics IDs: 1, 21, 61, 81, 101, 121, 181, 221, 323, 381, 441, 442, 443, 481, 482, 483, 601, 602,
122
+ 621, 641, 642, 644, 645, 648, 662, 663, 665, 681, 683, 701, 721, 742, 743, 744, 761, 801, 803, 841, 861,
123
+ 881, 923, 926, 941, 942, 944, 946
124
+ Only this dataset: 603, 661, 922, 985, 987, 990, 994, 1005, 1065
125
+ Only the CE-EMNLP-2015 dataset: 643, 646, 647, 664, 821, 902, 921, 925, 943, 945, 947, 961