SQuAD数据集结构简化表示
{
"data": [
{
"title": "Super_Bowl_50",
"paragraphs": [
{
"context": " numerals 50.",
"qas": [
{
"answers": [
{
"answer_start": 177,
"text": "Denver Broncos"
},
{
"answer_start": 177,
"text": "Denver Broncos"
},
{
"answer_start": 177,
"text": "Denver Broncos"
}
],
"question": "Which NFL team represented the AFC at Super Bowl 50?",
"id": "56be4db0acb8001400a502ec"
}
]
}
]
}
],
"version": "1.1"
}
更简化
{
"data": [
{
"title": "",
"paragraphs": [
{
"context": "",
"qas": [
{
"answers": [
{
"answer_start": 0,
"text": ""
},
{
"answer_start": 0,
"text": ""
},
{
"answer_start": 0,
"text": ""
}
],
"question": "",
"id": ""
}
]
}
]
}
],
"version": ""
}