Convert dataset to Parquet
Browse filesConvert dataset to Parquet.
- README.md +79 -11
- Task_1/train-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -1,28 +1,96 @@
|
|
1 |
---
|
2 |
-
license: other
|
3 |
-
language:
|
4 |
-
- en
|
5 |
-
pretty_name: >-
|
6 |
-
DWIE (Deutsche Welle corpus for Information Extraction) is a new dataset for
|
7 |
-
document-level multi-task Information Extraction (IE).
|
8 |
-
size_categories:
|
9 |
-
- 10M<n<100M
|
10 |
annotations_creators:
|
11 |
- expert-generated
|
12 |
language_creators:
|
13 |
- found
|
|
|
|
|
|
|
14 |
multilinguality:
|
15 |
- monolingual
|
16 |
-
|
|
|
17 |
source_datasets:
|
18 |
- original
|
19 |
-
tags:
|
20 |
-
- Named Entity Recognition, Coreference Resolution, Relation Extraction, Entity Linking
|
21 |
task_categories:
|
22 |
- feature-extraction
|
23 |
- text-classification
|
24 |
task_ids:
|
25 |
- entity-linking-classification
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
train-eval-index:
|
27 |
- col_mapping:
|
28 |
labels: tags
|
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
annotations_creators:
|
3 |
- expert-generated
|
4 |
language_creators:
|
5 |
- found
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
license: other
|
9 |
multilinguality:
|
10 |
- monolingual
|
11 |
+
size_categories:
|
12 |
+
- 10M<n<100M
|
13 |
source_datasets:
|
14 |
- original
|
|
|
|
|
15 |
task_categories:
|
16 |
- feature-extraction
|
17 |
- text-classification
|
18 |
task_ids:
|
19 |
- entity-linking-classification
|
20 |
+
paperswithcode_id: acronym-identification
|
21 |
+
pretty_name: DWIE (Deutsche Welle corpus for Information Extraction) is a new dataset
|
22 |
+
for document-level multi-task Information Extraction (IE).
|
23 |
+
tags:
|
24 |
+
- Named Entity Recognition, Coreference Resolution, Relation Extraction, Entity Linking
|
25 |
+
dataset_info:
|
26 |
+
config_name: Task_1
|
27 |
+
features:
|
28 |
+
- name: id
|
29 |
+
dtype: string
|
30 |
+
- name: content
|
31 |
+
dtype: string
|
32 |
+
- name: tags
|
33 |
+
dtype: string
|
34 |
+
- name: mentions
|
35 |
+
list:
|
36 |
+
- name: begin
|
37 |
+
dtype: int32
|
38 |
+
- name: end
|
39 |
+
dtype: int32
|
40 |
+
- name: text
|
41 |
+
dtype: string
|
42 |
+
- name: concept
|
43 |
+
dtype: int32
|
44 |
+
- name: candidates
|
45 |
+
sequence: string
|
46 |
+
- name: scores
|
47 |
+
sequence: float32
|
48 |
+
- name: concepts
|
49 |
+
list:
|
50 |
+
- name: concept
|
51 |
+
dtype: int32
|
52 |
+
- name: text
|
53 |
+
dtype: string
|
54 |
+
- name: keyword
|
55 |
+
dtype: bool
|
56 |
+
- name: count
|
57 |
+
dtype: int32
|
58 |
+
- name: link
|
59 |
+
dtype: string
|
60 |
+
- name: tags
|
61 |
+
sequence: string
|
62 |
+
- name: relations
|
63 |
+
list:
|
64 |
+
- name: s
|
65 |
+
dtype: int32
|
66 |
+
- name: p
|
67 |
+
dtype: string
|
68 |
+
- name: o
|
69 |
+
dtype: int32
|
70 |
+
- name: frames
|
71 |
+
list:
|
72 |
+
- name: type
|
73 |
+
dtype: string
|
74 |
+
- name: slots
|
75 |
+
list:
|
76 |
+
- name: name
|
77 |
+
dtype: string
|
78 |
+
- name: value
|
79 |
+
dtype: int32
|
80 |
+
- name: iptc
|
81 |
+
sequence: string
|
82 |
+
splits:
|
83 |
+
- name: train
|
84 |
+
num_bytes: 16533390
|
85 |
+
num_examples: 802
|
86 |
+
download_size: 3822277
|
87 |
+
dataset_size: 16533390
|
88 |
+
configs:
|
89 |
+
- config_name: Task_1
|
90 |
+
data_files:
|
91 |
+
- split: train
|
92 |
+
path: Task_1/train-*
|
93 |
+
default: true
|
94 |
train-eval-index:
|
95 |
- col_mapping:
|
96 |
labels: tags
|
Task_1/train-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:03fd09eda0e5e817a194d85c10d513f0952f0b5596d0f421f50ef5d7a0011b26
|
3 |
+
size 3822277
|