Datasets:
File size: 957 Bytes
6d33575 e1f68b1 885c13a e1f68b1 885c13a | 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 | ---
license: mit
task_categories:
- question-answering
language:
- en
size_categories:
- 10K<n<100K
---
# Dataset Card for Simple SQuAD
<!-- Provide a quick summary of the dataset. -->
This is a simplified version of SQuAD v1 dataset.
## Dataset Details
### Dataset Description
<!-- Provide a longer summary of what this dataset is. -->
The modifications made the original SQuAD v1 dataset:
* Extract only the needed columns to train a seq2seq model (context, question and answer)
* Preprocess the text to have only English letters and some basic punctuation marks.
* Punctuation marks are separated from the adjacent words (i.e: hello! -> hello !)
* Remove context length greater than 175 tokens (this removes around 20% of the original dataset)
* Remove questions and answers longer than 30 tokens (this removes around 140 examples from the original dataset)
* Add three additional columns to show the word count for each context, question and answer |