Datasets:

Languages:
Chinese
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
expert-generated
Source Datasets:
original
Tags:
stance-detection
License:
leondz commited on
Commit
3a62876
1 Parent(s): 1f82fe0

update metadata

Browse files
Files changed (2) hide show
  1. README.md +34 -3
  2. nlpcc_stance.py +1 -1
README.md CHANGED
@@ -20,7 +20,7 @@ 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 +48,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 +64,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 +75,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
 
 
20
  - text-classification-other-stance-detection
21
  ---
22
 
23
+ # Dataset Card for "NLPCC 2016: Stance Detection in Chinese Microblogs"
24
 
25
  ## Table of Contents
26
  - [Dataset Description](#dataset-description)
 
48
 
49
  ## Dataset Description
50
 
51
+ - **Homepage:** [http://tcci.ccf.org.cn/conference/2016/pages/page05_evadata.html](http://tcci.ccf.org.cn/conference/2016/pages/page05_evadata.html)
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
 
65
  ### Supported Tasks and Leaderboards
66
 
67
+ * Stance Detection in Chinese Microblogs
68
 
69
  ### Languages
70
 
 
75
 
76
  ### Data Instances
77
 
78
+ Example instance:
79
+
80
+ ```
81
+ {
82
+ 'id': '0',
83
+ 'target': 'IphoneSE',
84
+ 'text': '3月31日,苹果iPhone SE正式开卖,然而这款小屏新机并未出现人们预想的疯抢局面。根据市场分析机构Localytics周一公布的数据,iPhone SE正式上市的这个周末,销量成绩并不算太好。',
85
+ 'stance': 2
86
+ }
87
+ ```
88
 
89
  ### Data Fields
90
 
91
+ * id: a `string` field with a unique id for the instance
92
+ * target: a `string` representing the target of the stance
93
+ * text: a `string` of the stance-bearing text
94
+ * stance: an `int` representing class label -- `0`: AGAINST; `1`: FAVOR; `2`: NONE.
95
+
96
  ### Data Splits
97
 
98
+ The training split has 2986 instances
99
+
100
  ## Dataset Creation
101
 
102
  ### Curation Rationale
103
 
104
+ 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.
105
 
106
  ### Source Data
107
 
108
  #### Initial Data Collection and Normalization
109
 
110
+ Not specified
111
 
112
  #### Who are the source language producers?
113
 
114
+ Sina Weibo users
115
 
116
  ### Annotations
117
 
118
  #### Annotation process
119
 
120
+ The stance of each target-microblog pair is duplicated annotated by two students
121
+ individually. If these two students provide the same annotation, the stance of this
122
+ microblog-target pair is then labeled. If the different annotation is detected, the third
123
+ student will be assigned to annotate this pair. Their annotation results will be voted to
124
+ obtain the final label.
125
 
126
  #### Who are the annotators?
127
 
128
+ Students in China
129
 
130
  ### Personal and Sensitive Information
131
 
132
+ No reflections
133
+
134
 
135
  ## Considerations for Using the Data
136
 
137
  ### Social Impact of Dataset
138
 
139
+ 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.
140
+
141
 
142
  ### Discussion of Biases
143
 
144
+ 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.
145
 
146
  ### Other Known Limitations
147
 
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