forked from clauderouxster/NL-Augmenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
30 lines (30 loc) Β· 985 Bytes
/
test.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"type": "longer_names_ner",
"test_cases": [
{
"class": "LongerNamesNer",
"inputs": {
"token_sequence": "Manmohan Singh served as the PM of India .",
"tag_sequence": "B-PER I-PER O O O O O B-COUNTRY O"
},
"outputs": [{
"token_sequence": "Manmohan Y M Singh served as the PM of India .",
"tag_sequence": "B-PER I-PER I-PER I-PER O O O O O B-COUNTRY O"
},{
"token_sequence": "Manmohan Y M Singh served as the PM of India .",
"tag_sequence": "B-PER I-PER I-PER I-PER O O O O O B-COUNTRY O"
}]
},
{
"class": "LongerNamesNer",
"inputs": {
"token_sequence": "Neil Alden Armstrong was an American astronaut",
"tag_sequence": "B-PER I-PER I-PER O O B-COUNTRY O"
},
"outputs": [{
"token_sequence": "Neil Y M Alden Armstrong was an American astronaut",
"tag_sequence": "B-PER I-PER I-PER I-PER I-PER O O B-COUNTRY O"
}]
}
]
}