e-tornike commited on
Commit
944c852
1 Parent(s): ac97e60

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +177 -0
README.md ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ languages:
7
+ - en
8
+ - de
9
+ licenses:
10
+ - mit
11
+ multilinguality:
12
+ - multilingual
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - text-classification
19
+ task_ids:
20
+ - multi-label-classification
21
+ - semantic-similarity-classification
22
+ pretty_name: SV-Ident
23
+ paperswithcode_id: sv-ident
24
+ ---
25
+
26
+ # Dataset Card for SV-Ident
27
+
28
+ ## Table of Contents
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Instances](#data-instances)
35
+ - [Data Fields](#data-instances)
36
+ - [Data Splits](#data-instances)
37
+ - [Dataset Creation](#dataset-creation)
38
+ - [Curation Rationale](#curation-rationale)
39
+ - [Source Data](#source-data)
40
+ - [Annotations](#annotations)
41
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
42
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
43
+ - [Social Impact of Dataset](#social-impact-of-dataset)
44
+ - [Discussion of Biases](#discussion-of-biases)
45
+ - [Other Known Limitations](#other-known-limitations)
46
+ - [Additional Information](#additional-information)
47
+ - [Dataset Curators](#dataset-curators)
48
+ - [Licensing Information](#licensing-information)
49
+ - [Citation Information](#citation-information)
50
+
51
+ ## Dataset Description
52
+
53
+ - **Homepage:** https://vadis-project.github.io/sv-ident-sdp2022/
54
+ - **Repository:** https://github.com/vadis-project/sv-ident
55
+ - **Paper:** [Needs More Information]
56
+ - **Leaderboard:** [Needs More Information]
57
+ - **Point of Contact:** svident2022@googlegroups.com
58
+
59
+ ### Dataset Summary
60
+
61
+ SV-Ident comprises 4,248 sentences from social science publications in English and German. The data is the official data for the Shared Task: “Survey Variable Identification in Social Science Publications” (SV-Ident) 2022. Visit the homepage to find out more details about the shared task.
62
+
63
+ ### Supported Tasks and Leaderboards
64
+
65
+ The dataset supports:
66
+
67
+ - **Variable Detection**: identifying whether a sentence contains a variable mention or not.
68
+
69
+ - **Variable Disambiguation**: identifying which variable from a given vocabulary is mentioned in a sentence.
70
+
71
+ ### Languages
72
+
73
+ The text in the dataset is in English and German, as written by researchers. The domain of the texts is scientific publications in the social sciences.
74
+
75
+ ## Dataset Structure
76
+
77
+ ### Data Instances
78
+
79
+ ```
80
+ {
81
+ "sentence": "Our point, however, is that so long as downward (favorable comparisons overwhelm the potential for unfavorable comparisons, system justification should be a likely outcome amongst the disadvantaged.",
82
+ "is_variable": 1,
83
+ "variable": ["exploredata-ZA5400_VarV66", "exploredata-ZA5400_VarV53"],
84
+ "research_data": ["ZA5400"],
85
+ "doc_id": "73106",
86
+ "uuid": "b9fbb80f-3492-4b42-b9d5-0254cc33ac10",
87
+ "lang": "en",
88
+ }
89
+ ```
90
+
91
+ ### Data Fields
92
+
93
+ The following data fields are provided for documents:
94
+
95
+ `sentence`: Textual instance, which may contain a variable mention.<br />
96
+ `is_variable`: Label, whether the textual instance contains a variable mention (1) or not (0). This column can be used for Task 1 (Variable Detection).<br />
97
+ `variable`: Variables (separated by a comma ";") that are mentioned in the textual instance. This column can be used for Task 2 (Variable Disambiguation).<br />
98
+ `research_data`: Research data IDs (separated by a ";") that are relevant for each instance (and in general for each "doc_id").<br />
99
+ `doc_id`: ID of the source document. Each document is written in one language (either English or German).<br />
100
+ `uuid`: Unique ID of the instance in uuid4 format.<br />
101
+ `lang`: Language of the sentence.
102
+
103
+ ### Data Splits
104
+
105
+ | Split | No of sentences |
106
+ | ------------------- | ------------------------------------ |
107
+ | Train | 4,248 |
108
+
109
+ ## Dataset Creation
110
+
111
+ ### Curation Rationale
112
+
113
+ The dataset was curated by the VADIS project (https://vadis-project.github.io/).
114
+ The documents were annotated by two expert annotators.
115
+
116
+ ### Source Data
117
+
118
+ #### Initial Data Collection and Normalization
119
+
120
+ The original data are available at GESIS (https://www.gesis.org/home) in an unprocessed format.
121
+
122
+ #### Who are the source language producers?
123
+
124
+ [Needs More Information]
125
+
126
+ ### Annotations
127
+
128
+ #### Annotation process
129
+
130
+ [Needs More Information]
131
+
132
+ #### Who are the annotators?
133
+
134
+ The documents were annotated by two expert annotators.
135
+
136
+ ### Personal and Sensitive Information
137
+
138
+ The dataset does not include personal or sensitive information.
139
+
140
+ ## Considerations for Using the Data
141
+
142
+ ### Social Impact of Dataset
143
+
144
+ [Needs More Information]
145
+
146
+ ### Discussion of Biases
147
+
148
+ [Needs More Information]
149
+
150
+ ### Other Known Limitations
151
+
152
+ [Needs More Information]
153
+
154
+ ## Additional Information
155
+
156
+ ### Dataset Curators
157
+
158
+ VADIS project (https://vadis-project.github.io/)
159
+
160
+ ### Licensing Information
161
+
162
+ [Needs More Information]
163
+
164
+ ### Citation Information
165
+
166
+ ```
167
+ @misc{github,
168
+ author={vadis-project},
169
+ title={SV-Ident},
170
+ year={2022},
171
+ url={https://github.com/vadis-project/sv-ident},
172
+ }
173
+ ```
174
+
175
+ ### Contributions
176
+
177
+ [Needs More Information]