Datasets:
Tasks:
Token Classification
Sub-tasks:
named-entity-recognition
Languages:
Finnish
Size:
10K<n<100K
License:
Commit
•
5ac4cb5
1
Parent(s):
2af94bb
Replace YAML keys from int to str
Browse filesReplace YAML metadata integer keys with strings, as the Hub does not support integers.
See: https://github.com/huggingface/datasets/issues/5275
README.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
---
|
2 |
-
pretty_name: Turku NER corpus
|
3 |
annotations_creators:
|
4 |
- expert-generated
|
5 |
language_creators:
|
@@ -18,7 +17,7 @@ task_categories:
|
|
18 |
- token-classification
|
19 |
task_ids:
|
20 |
- named-entity-recognition
|
21 |
-
|
22 |
dataset_info:
|
23 |
features:
|
24 |
- name: id
|
@@ -29,19 +28,19 @@ dataset_info:
|
|
29 |
sequence:
|
30 |
class_label:
|
31 |
names:
|
32 |
-
0: B-DATE
|
33 |
-
1: B-EVENT
|
34 |
-
2: B-LOC
|
35 |
-
3: B-ORG
|
36 |
-
4: B-PER
|
37 |
-
5: B-PRO
|
38 |
-
6: I-DATE
|
39 |
-
7: I-EVENT
|
40 |
-
8: I-LOC
|
41 |
-
9: I-ORG
|
42 |
-
10: I-PER
|
43 |
-
11: I-PRO
|
44 |
-
12: O
|
45 |
splits:
|
46 |
- name: train
|
47 |
num_bytes: 3257447
|
|
|
1 |
---
|
|
|
2 |
annotations_creators:
|
3 |
- expert-generated
|
4 |
language_creators:
|
|
|
17 |
- token-classification
|
18 |
task_ids:
|
19 |
- named-entity-recognition
|
20 |
+
pretty_name: Turku NER corpus
|
21 |
dataset_info:
|
22 |
features:
|
23 |
- name: id
|
|
|
28 |
sequence:
|
29 |
class_label:
|
30 |
names:
|
31 |
+
'0': B-DATE
|
32 |
+
'1': B-EVENT
|
33 |
+
'2': B-LOC
|
34 |
+
'3': B-ORG
|
35 |
+
'4': B-PER
|
36 |
+
'5': B-PRO
|
37 |
+
'6': I-DATE
|
38 |
+
'7': I-EVENT
|
39 |
+
'8': I-LOC
|
40 |
+
'9': I-ORG
|
41 |
+
'10': I-PER
|
42 |
+
'11': I-PRO
|
43 |
+
'12': O
|
44 |
splits:
|
45 |
- name: train
|
46 |
num_bytes: 3257447
|