Category 1 & 2
...
Data Model
Example 1
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{
"data": {
"question": {
"text": "Complete the sequence: 21, 23, __1__, __2__, 29",
"audio": "",
"image": ""
},
"answers": [
[ "25" ],
[ "27" ]
],
"data":{
"expAnswers": [
[ "25" ],
[ "27" ]
],
"expAnsIndices": [
[ 0, 1 ]
]
}
},
"config": {
"eval_ignore_case": true,
"eval_ignore_whitespaces": true
}
} |
Example 2
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{
"data": {
"question": {
"text": "__1__ and __2__ are the gas giants of the Solar System.",
"audio": "",
"image": ""
},
"answers": [
[ "Jupiter" ],
[ "Saturn" ]
],
"data":{
"expAnswers": [
[ "jupiter" ],
[ "saturn" ]
],
"expAnsIndices": [
[ 0, 1 ], [ 1, 0 ]
]
}
},
"config": {
"eval_ignore_case": true,
"eval_ignore_whitespaces": true
}
} |
Example 3
Code Block | ||||
---|---|---|---|---|
| ||||
{ "data": { "question": { "text": "Name any two south Indian states: __1__, __2__", "audio": "", "image": "" }, "answers": [ [ "Tamil Nadu", "TN", "Tamil Nad" ], [ "Andhra Pradesh", "AP", "Andra", "Andrapradesh" ], [ "Kerala", "Kerela", "KL" ], [ "Telungana", "Telangana", "TS" ], [ "Karnataka", "KA" ] ], "data":{ "expAnswers": [ [ "tamilnadu", "tn", "tamilnad" ], [ "andhrapradesh", "ap", "andra", "andrapradesh" ], [ "kerala", "kerela", "kl" ], [ "telungana", "telangana", "ts" ], [ "karnataka", "ks" ] ], "expAnsIndices": [ [ 0, 1 ], [ 0, 2 ], [ 1, 2 ], [ 0, 3 ], [ 1, 3 ], [ 2, 3 ], [ 0, 4 ], [ 1, 4 ], [ 2, 4 ], [ 3, 4 ] ] } }, "config": { "eval_ignore_case": true, "eval_ignore_whitespaces": true } } |
...