forked from clauderouxster/NL-Augmenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
50 lines (50 loc) Β· 1.24 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"type": "mixed_language_perturbation",
"test_cases": [
{
"class": "MixedLanguagePerturbation",
"inputs": {
"sentence": "Andrew finally returned the Comic book to Chris that I bought last week"
},
"outputs": [{
"sentence": "Andrew finally returned die Comic book to Chris that I bought last woche"
}]
},
{
"class": "MixedLanguagePerturbation",
"inputs": {
"sentence": "Chris borrowed the Comic book from Andrew last weekend"
},
"outputs": [{
"sentence": "Chris borrowed the Komik book from Andrew last weekend"
}]
},
{
"class": "MixedLanguagePerturbation",
"inputs": {
"sentence": "Turn off the light please"
},
"outputs": [{
"sentence": "Turn off the licht please"
}]
},
{
"class": "MixedLanguagePerturbation",
"inputs": {
"sentence": "I love cat"
},
"outputs": [{
"sentence": "I love cat"
}]
},
{
"class": "MixedLanguagePerturbation",
"inputs": {
"sentence": "Thomas loves to cook chicken every Monday"
},
"outputs": [{
"sentence": "Thomas loves to kochen chicken every Monday"
}]
}
]
}