mkon commited on
Commit
1c21405
2 Parent(s): 530acac c154893

Merge branch 'main' of https://huggingface.co/datasets/strombergnlp/nlpcc-stance

Browse files
Files changed (2) hide show
  1. README.md +35 -3
  2. nlpcc_stance.py +1 -1
README.md CHANGED
@@ -18,9 +18,10 @@ task_categories:
18
  - text-classification
19
  task_ids:
20
  - text-classification-other-stance-detection
 
21
  ---
22
 
23
- # Dataset Card for "NLPCC Stance"
24
 
25
  ## Table of Contents
26
  - [Dataset Description](#dataset-description)
@@ -48,7 +49,7 @@ task_ids:
48
 
49
  ## Dataset Description
50
 
51
- - **Homepage:**
52
  - **Repository:**
53
  - **Paper:** [https://link.springer.com/chapter/10.1007/978-3-319-50496-4_85](https://link.springer.com/chapter/10.1007/978-3-319-50496-4_85)
54
  - **Point of Contact:** [Mads Kongsback](https://github.com/mkonxd)
@@ -64,7 +65,7 @@ Some instances of the dataset have been removed, as they were without label.
64
 
65
  ### Supported Tasks and Leaderboards
66
 
67
- * Stance Detection
68
 
69
  ### Languages
70
 
@@ -75,42 +76,73 @@ Chinese, as spoken on the Weibo website (`bcp47:zh`)
75
 
76
  ### Data Instances
77
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  ### Data Fields
80
 
 
 
 
 
 
81
  ### Data Splits
82
 
 
 
83
  ## Dataset Creation
84
 
85
  ### Curation Rationale
86
 
 
87
 
88
  ### Source Data
89
 
90
  #### Initial Data Collection and Normalization
91
 
 
92
 
93
  #### Who are the source language producers?
94
 
 
95
 
96
  ### Annotations
97
 
98
  #### Annotation process
99
 
 
 
 
 
 
100
 
101
  #### Who are the annotators?
102
 
 
103
 
104
  ### Personal and Sensitive Information
105
 
 
 
106
 
107
  ## Considerations for Using the Data
108
 
109
  ### Social Impact of Dataset
110
 
 
 
111
 
112
  ### Discussion of Biases
113
 
 
114
 
115
  ### Other Known Limitations
116
 
 
18
  - text-classification
19
  task_ids:
20
  - text-classification-other-stance-detection
21
+ - sentiment-analysis
22
  ---
23
 
24
+ # Dataset Card for "NLPCC 2016: Stance Detection in Chinese Microblogs"
25
 
26
  ## Table of Contents
27
  - [Dataset Description](#dataset-description)
 
49
 
50
  ## Dataset Description
51
 
52
+ - **Homepage:** [http://tcci.ccf.org.cn/conference/2016/pages/page05_evadata.html](http://tcci.ccf.org.cn/conference/2016/pages/page05_evadata.html)
53
  - **Repository:**
54
  - **Paper:** [https://link.springer.com/chapter/10.1007/978-3-319-50496-4_85](https://link.springer.com/chapter/10.1007/978-3-319-50496-4_85)
55
  - **Point of Contact:** [Mads Kongsback](https://github.com/mkonxd)
 
65
 
66
  ### Supported Tasks and Leaderboards
67
 
68
+ * Stance Detection in Chinese Microblogs
69
 
70
  ### Languages
71
 
 
76
 
77
  ### Data Instances
78
 
79
+ Example instance:
80
+
81
+ ```
82
+ {
83
+ 'id': '0',
84
+ 'target': 'IphoneSE',
85
+ 'text': '3月31日,苹果iPhone SE正式开卖,然而这款小屏新机并未出现人们预想的疯抢局面。根据市场分析机构Localytics周一公布的数据,iPhone SE正式上市的这个周末,销量成绩并不算太好。',
86
+ 'stance': 2
87
+ }
88
+ ```
89
 
90
  ### Data Fields
91
 
92
+ * id: a `string` field with a unique id for the instance
93
+ * target: a `string` representing the target of the stance
94
+ * text: a `string` of the stance-bearing text
95
+ * stance: an `int` representing class label -- `0`: AGAINST; `1`: FAVOR; `2`: NONE.
96
+
97
  ### Data Splits
98
 
99
+ The training split has 2986 instances
100
+
101
  ## Dataset Creation
102
 
103
  ### Curation Rationale
104
 
105
+ The goal was to create a dataset of microblog text annotated for stance. Six stance targets were selected and data was collected from Sina Weibo for annotation.
106
 
107
  ### Source Data
108
 
109
  #### Initial Data Collection and Normalization
110
 
111
+ Not specified
112
 
113
  #### Who are the source language producers?
114
 
115
+ Sina Weibo users
116
 
117
  ### Annotations
118
 
119
  #### Annotation process
120
 
121
+ The stance of each target-microblog pair is duplicated annotated by two students
122
+ individually. If these two students provide the same annotation, the stance of this
123
+ microblog-target pair is then labeled. If the different annotation is detected, the third
124
+ student will be assigned to annotate this pair. Their annotation results will be voted to
125
+ obtain the final label.
126
 
127
  #### Who are the annotators?
128
 
129
+ Students in China
130
 
131
  ### Personal and Sensitive Information
132
 
133
+ No reflections
134
+
135
 
136
  ## Considerations for Using the Data
137
 
138
  ### Social Impact of Dataset
139
 
140
+ The data preserves social media utterances verbatim and so has obviated any right to be forgotten, though usernames and post IDs are not explicitly included in the data.
141
+
142
 
143
  ### Discussion of Biases
144
 
145
+ There'll be at least a temporal and regional bias to this data, as well as it only representing expressions of stance on six topics.
146
 
147
  ### Other Known Limitations
148
 
nlpcc_stance.py CHANGED
@@ -36,7 +36,7 @@ This is a stance prediction dataset in Chinese.
36
  The data is that from a shared task, stance detection in Chinese microblogs, in NLPCC-ICCPOL 2016. It covers Task A, a mandatory supervised task which detects stance towards five targets of interest with given labeled data.
37
  """
38
 
39
- _HOMEPAGE = ""
40
 
41
  _LICENSE = "cc-by-4.0"
42
 
 
36
  The data is that from a shared task, stance detection in Chinese microblogs, in NLPCC-ICCPOL 2016. It covers Task A, a mandatory supervised task which detects stance towards five targets of interest with given labeled data.
37
  """
38
 
39
+ _HOMEPAGE = "http://tcci.ccf.org.cn/conference/2016/pages/page05_evadata.html"
40
 
41
  _LICENSE = "cc-by-4.0"
42