forked from clauderouxster/NL-Augmenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
41 lines (41 loc) Β· 1.07 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
{
"type": "punctuation",
"test_cases": [
{
"class": "PunctuationWithRules",
"inputs": {
"sentence": "if you are feeling good then go to school otherwise take rest at home"
},
"outputs": [{
"sentence": "If you are feeling good, then go to school, otherwise take rest at home."
}]
},
{
"class": "PunctuationWithRules",
"inputs": {
"sentence": "hello sam how are you"
},
"outputs": [{
"sentence": "Hello Sam, how are you?"
}]
},
{
"class": "PunctuationWithRules",
"inputs": {
"sentence": "alex buy me a pizza i will help you to complete your homework"
},
"outputs": [{
"sentence": "Alex, buy me a pizza, I will help you to complete your homework."
}]
},
{
"class": "PunctuationWithRules",
"inputs": {
"sentence": "hey sam how are you doing please invite alex on your wedding"
},
"outputs": [{
"sentence": "Hey Sam, how are you doing please invite Alex on your wedding?"
}]
}
]
}