haystack/test/samples/squad/tiny_passages.json
Timo Moeller 4803da009a
Using PreProcessor functions on eval data (#751)
* Add eval data splitting

* Adjust for split by passage, add test and test data, adjust docstrings, add max_docs to highler level fct
2021-01-20 14:40:10 +01:00

33 lines
805 B
JSON

{
"data": [
{
"title": "test1",
"paragraphs": [
{
"context": "My name is Carla and I live together with Abdul in Berlin. \n\nThis is a new passage saying Leila lives in Berlin, too.",
"qas": [
{
"answers": [
{
"answer_start": 11,
"text": "Carla"
},
{
"answer_start": 42,
"text": "Abdul"
},
{
"answer_start": 89,
"text": "Leila"
}
],
"id": 7211011040021040393,
"question": "Who lives in Berlin?",
"is_impossible": false
}
]
}
]
}
]
}