Rosenberg commited on
Commit
5818ff0
1 Parent(s): b0d9223

Upload 3 files

Browse files
Files changed (3) hide show
  1. README.txt +11 -0
  2. example_gold.json +77 -0
  3. example_pred.json +65 -0
README.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1. Mainfest:
2
+ - CMeEE_train.json: 训练集
3
+ - CMeEE_dev.json: 验证集
4
+ - CMeEE_test.json: 测试集, 选手提交的时候需要为每条记录填充"entities"字段,类型为列表。每个识别出来的实体必须包含"start_idx", "end_idx", "type"3个字段。
5
+ - example_gold.json: 标准答案示例
6
+ - example_pred.json: 提交结果示例
7
+ - README.txt: 说明文件
8
+
9
+ 2. 评估指标以严格Micro-F1值为准
10
+
11
+ 3. 该任务提交的文件名为:CMeEE_test.json
example_gold.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "text": "对儿童SARST细胞亚群的研究表明,与成人SARS相比,儿童细胞下降不明显,证明上述推测成立。",
4
+ "entities": [
5
+ {
6
+ "start_idx": 3,
7
+ "end_idx": 9,
8
+ "type": "bod",
9
+ "entity": "SARST细胞"
10
+ },
11
+ {
12
+ "start_idx": 19,
13
+ "end_idx": 24,
14
+ "type": "dis",
15
+ "entity": "成人SARS"
16
+ }
17
+ ]
18
+ },
19
+ {
20
+ "text": "研究证实,细胞减少与肺内病变程度及肺内炎性病变吸收程度密切相关。",
21
+ "entities": [
22
+ {
23
+ "start_idx": 10,
24
+ "end_idx": 10,
25
+ "type": "bod",
26
+ "entity": "肺"
27
+ },
28
+ {
29
+ "start_idx": 10,
30
+ "end_idx": 13,
31
+ "type": "sym",
32
+ "entity": "肺内病变"
33
+ },
34
+ {
35
+ "start_idx": 17,
36
+ "end_idx": 17,
37
+ "type": "bod",
38
+ "entity": "肺"
39
+ },
40
+ {
41
+ "start_idx": 17,
42
+ "end_idx": 22,
43
+ "type": "sym",
44
+ "entity": "肺内炎性病变"
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "text": "因而儿童肺部病变较轻,肺内炎性病变吸收较快。",
50
+ "entities": [
51
+ {
52
+ "start_idx": 4,
53
+ "end_idx": 5,
54
+ "type": "bod",
55
+ "entity": "肺部"
56
+ },
57
+ {
58
+ "start_idx": 4,
59
+ "end_idx": 7,
60
+ "type": "sym",
61
+ "entity": "肺部病变"
62
+ },
63
+ {
64
+ "start_idx": 11,
65
+ "end_idx": 11,
66
+ "type": "bod",
67
+ "entity": "肺"
68
+ },
69
+ {
70
+ "start_idx": 11,
71
+ "end_idx": 16,
72
+ "type": "sym",
73
+ "entity": "肺内炎性病变"
74
+ }
75
+ ]
76
+ }
77
+ ]
example_pred.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "text": "对儿童SARST细胞亚群的研究表明,与成人SARS相比,儿童细胞下降不明显,证明上述推测成立。",
4
+ "entities": [
5
+ {
6
+ "start_idx": 19,
7
+ "end_idx": 24,
8
+ "type": "dis",
9
+ "entity": "成人SARS"
10
+ }
11
+ ]
12
+ },
13
+ {
14
+ "text": "研究证实,细胞减少与肺内病变程度及肺内炎性病变吸收程度密切相关。",
15
+ "entities": [
16
+ {
17
+ "start_idx": 10,
18
+ "end_idx": 10,
19
+ "type": "bod",
20
+ "entity": "肺"
21
+ },
22
+ {
23
+ "start_idx": 10,
24
+ "end_idx": 13,
25
+ "type": "dis",
26
+ "entity": "肺内病变"
27
+ },
28
+ {
29
+ "start_idx": 17,
30
+ "end_idx": 18,
31
+ "type": "bod",
32
+ "entity": "肺内"
33
+ },
34
+ {
35
+ "start_idx": 17,
36
+ "end_idx": 22,
37
+ "type": "sym",
38
+ "entity": "肺内炎性病变"
39
+ }
40
+ ]
41
+ },
42
+ {
43
+ "text": "因而儿童肺部病变较轻,肺内炎性病变吸收较快。",
44
+ "entities": [
45
+ {
46
+ "start_idx": 4,
47
+ "end_idx": 5,
48
+ "type": "bod",
49
+ "entity": "肺部"
50
+ },
51
+ {
52
+ "start_idx": 4,
53
+ "end_idx": 7,
54
+ "type": "dis",
55
+ "entity": "肺部病变"
56
+ },
57
+ {
58
+ "start_idx": 11,
59
+ "end_idx": 16,
60
+ "type": "sym",
61
+ "entity": "肺内炎性病变"
62
+ }
63
+ ]
64
+ }
65
+ ]