tollefj commited on
Commit
5ead311
1 Parent(s): 9185f0e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md CHANGED
@@ -28,4 +28,72 @@ configs:
28
  path: data/validation-*
29
  - split: test
30
  path: data/test-*
 
 
 
 
 
 
 
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  path: data/validation-*
29
  - split: test
30
  path: data/test-*
31
+ task_categories:
32
+ - text-classification
33
+ language:
34
+ - 'no'
35
+ - da
36
+ size_categories:
37
+ - 10K<n<100K
38
  ---
39
+
40
+ Created from the three datasets `wikiann`, `norne` and `dane`.
41
+
42
+ See detailed config below:
43
+
44
+ ```python
45
+ dataset_ids = [
46
+ "wikiann",
47
+ "dane",
48
+ "norne",
49
+ ]
50
+
51
+ dataset_subsets = {
52
+ "wikiann": [
53
+ "nn", "no", "da"
54
+ ],
55
+ "dane": [None],
56
+ "norne": ["combined-7"],
57
+ }
58
+ ```
59
+
60
+ Unified to the following BIO-scheme:
61
+
62
+
63
+ ```
64
+ # O: 0
65
+ # B-PER: 1
66
+ # I-PER: 2
67
+ # B-ORG: 3
68
+ # I-ORG: 4
69
+ # B-LOC: 5
70
+ # I-LOC: 6
71
+ # B-MISC: 7
72
+ # I-MISC: 8
73
+
74
+ mappers = {
75
+ "norne": {
76
+ 0: 0,
77
+ 1: 1,
78
+ 2: 2,
79
+ 3: 3,
80
+ 4: 4,
81
+ # PROD->MISC
82
+ 5: 7,
83
+ 6: 8,
84
+ # LOC -> LOC
85
+ 7: 5,
86
+ 8: 6,
87
+ # DRV -> MISC (names, but derived)
88
+ 9: 7,
89
+ 10: 8,
90
+ # EVT -> MISC (events)
91
+ 11: 7,
92
+ 12: 8,
93
+ # MISC -> MISC
94
+ 13: 7,
95
+ 14: 8,
96
+ }
97
+ }
98
+
99
+ ```