Datasets:
Tasks:
Token Classification
Sub-tasks:
named-entity-recognition
Languages:
Chinese
Size:
10K<n<100K
License:
Commit
•
34593fa
1
Parent(s):
66ed063
Replace YAML keys from int to str (#2)
Browse files- Replace YAML keys from int to str (9890f4694c72244d3e5b1c18d03dac7686cb575e)
README.md
CHANGED
@@ -17,21 +17,7 @@ task_categories:
|
|
17 |
- token-classification
|
18 |
task_ids:
|
19 |
- named-entity-recognition
|
20 |
-
paperswithcode_id: null
|
21 |
pretty_name: MSRA NER
|
22 |
-
train-eval-index:
|
23 |
-
- config: msra_ner
|
24 |
-
task: token-classification
|
25 |
-
task_id: entity_extraction
|
26 |
-
splits:
|
27 |
-
train_split: train
|
28 |
-
eval_split: test
|
29 |
-
col_mapping:
|
30 |
-
tokens: tokens
|
31 |
-
ner_tags: tags
|
32 |
-
metrics:
|
33 |
-
- type: seqeval
|
34 |
-
name: seqeval
|
35 |
dataset_info:
|
36 |
features:
|
37 |
- name: id
|
@@ -42,13 +28,13 @@ dataset_info:
|
|
42 |
sequence:
|
43 |
class_label:
|
44 |
names:
|
45 |
-
0: O
|
46 |
-
1: B-PER
|
47 |
-
2: I-PER
|
48 |
-
3: B-ORG
|
49 |
-
4: I-ORG
|
50 |
-
5: B-LOC
|
51 |
-
6: I-LOC
|
52 |
config_name: msra_ner
|
53 |
splits:
|
54 |
- name: train
|
@@ -59,6 +45,19 @@ dataset_info:
|
|
59 |
num_examples: 3443
|
60 |
download_size: 15156606
|
61 |
dataset_size: 35966008
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
---
|
63 |
|
64 |
# Dataset Card for MSRA NER
|
|
|
17 |
- token-classification
|
18 |
task_ids:
|
19 |
- named-entity-recognition
|
|
|
20 |
pretty_name: MSRA NER
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
dataset_info:
|
22 |
features:
|
23 |
- name: id
|
|
|
28 |
sequence:
|
29 |
class_label:
|
30 |
names:
|
31 |
+
'0': O
|
32 |
+
'1': B-PER
|
33 |
+
'2': I-PER
|
34 |
+
'3': B-ORG
|
35 |
+
'4': I-ORG
|
36 |
+
'5': B-LOC
|
37 |
+
'6': I-LOC
|
38 |
config_name: msra_ner
|
39 |
splits:
|
40 |
- name: train
|
|
|
45 |
num_examples: 3443
|
46 |
download_size: 15156606
|
47 |
dataset_size: 35966008
|
48 |
+
train-eval-index:
|
49 |
+
- config: msra_ner
|
50 |
+
task: token-classification
|
51 |
+
task_id: entity_extraction
|
52 |
+
splits:
|
53 |
+
train_split: train
|
54 |
+
eval_split: test
|
55 |
+
col_mapping:
|
56 |
+
tokens: tokens
|
57 |
+
ner_tags: tags
|
58 |
+
metrics:
|
59 |
+
- type: seqeval
|
60 |
+
name: seqeval
|
61 |
---
|
62 |
|
63 |
# Dataset Card for MSRA NER
|