eesuhn commited on
Commit
71ccd7f
·
verified ·
1 Parent(s): 6feff8e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +107 -43
README.md CHANGED
@@ -1,4 +1,24 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: tokens
@@ -7,54 +27,98 @@ dataset_info:
7
  sequence:
8
  class_label:
9
  names:
10
- '0': O
11
- '1': B-field
12
- '2': I-field
13
- '3': B-task
14
- '4': I-task
15
- '5': B-product
16
- '6': I-product
17
- '7': B-algorithm
18
- '8': I-algorithm
19
- '9': B-researcher
20
- '10': I-researcher
21
- '11': B-metrics
22
- '12': I-metrics
23
- '13': B-programlang
24
- '14': I-programlang
25
- '15': B-conference
26
- '16': I-conference
27
- '17': B-university
28
- '18': I-university
29
- '19': B-country
30
- '20': I-country
31
- '21': B-person
32
- '22': I-person
33
- '23': B-organisation
34
- '24': I-organisation
35
- '25': B-location
36
- '26': I-location
37
- '27': B-misc
38
- '28': I-misc
39
  splits:
40
  - name: train
41
- num_bytes: 64490
42
  num_examples: 100
43
  - name: validation
44
- num_bytes: 187113
45
  num_examples: 350
46
  - name: test
47
- num_bytes: 222784
48
  num_examples: 431
49
- download_size: 125361
50
- dataset_size: 474387
51
- configs:
52
- - config_name: default
53
- data_files:
54
- - split: train
55
- path: data/train-*
56
- - split: validation
57
- path: data/validation-*
58
- - split: test
59
- path: data/test-*
60
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - other
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - token-classification
18
+ task_ids:
19
+ - named-entity-recognition
20
+ paperswithcode_id: crossner
21
+ pretty_name: CrossNER-AI
22
  dataset_info:
23
  features:
24
  - name: tokens
 
27
  sequence:
28
  class_label:
29
  names:
30
+ "0": O
31
+ "1": B-field
32
+ "2": I-field
33
+ "3": B-task
34
+ "4": I-task
35
+ "5": B-product
36
+ "6": I-product
37
+ "7": B-algorithm
38
+ "8": I-algorithm
39
+ "9": B-researcher
40
+ "10": I-researcher
41
+ "11": B-metrics
42
+ "12": I-metrics
43
+ "13": B-programlang
44
+ "14": I-programlang
45
+ "15": B-conference
46
+ "16": I-conference
47
+ "17": B-university
48
+ "18": I-university
49
+ "19": B-country
50
+ "20": I-country
51
+ "21": B-person
52
+ "22": I-person
53
+ "23": B-organisation
54
+ "24": I-organisation
55
+ "25": B-location
56
+ "26": I-location
57
+ "27": B-misc
58
+ "28": I-misc
59
  splits:
60
  - name: train
61
+ num_bytes: 10000
62
  num_examples: 100
63
  - name: validation
64
+ num_bytes: 35000
65
  num_examples: 350
66
  - name: test
67
+ num_bytes: 43100
68
  num_examples: 431
 
 
 
 
 
 
 
 
 
 
 
69
  ---
70
+
71
+ # CrossNER AI Dataset
72
+
73
+ An NER dataset for cross-domain evaluation, [read more](https://arxiv.org/abs/2012.04373).
74
+ This split contains labeled data from the AI domain.
75
+
76
+ ## Features
77
+
78
+ - **tokens**: A list of words in the sentence
79
+ - **ner_tags**: A list of NER labels (as integers) corresponding to each token
80
+
81
+ ## Label Mapping
82
+
83
+ The dataset uses the following 29 labels:
84
+
85
+ | Index | Label |
86
+ |-------|-------|
87
+ | 0 | O |
88
+ | 1 | B-field |
89
+ | 2 | I-field |
90
+ | 3 | B-task |
91
+ | 4 | I-task |
92
+ | 5 | B-product |
93
+ | 6 | I-product |
94
+ | 7 | B-algorithm |
95
+ | 8 | I-algorithm |
96
+ | 9 | B-researcher |
97
+ | 10 | I-researcher |
98
+ | 11 | B-metrics |
99
+ | 12 | I-metrics |
100
+ | 13 | B-programlang |
101
+ | 14 | I-programlang |
102
+ | 15 | B-conference |
103
+ | 16 | I-conference |
104
+ | 17 | B-university |
105
+ | 18 | I-university |
106
+ | 19 | B-country |
107
+ | 20 | I-country |
108
+ | 21 | B-person |
109
+ | 22 | I-person |
110
+ | 23 | B-organisation |
111
+ | 24 | I-organisation |
112
+ | 25 | B-location |
113
+ | 26 | I-location |
114
+ | 27 | B-misc |
115
+ | 28 | I-misc |
116
+
117
+ ## Usage
118
+
119
+ ```python
120
+ from datasets import load_dataset
121
+
122
+ dataset = load_dataset("eesuhn/crossner-ai")
123
+ ```
124
+