File size: 830 Bytes
05faf83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
---
task_categories:
- summarization
language:
- en
size_categories:
- n<1K
---
Original data from: https://github.com/armancohan/long-summarization
The first n (with n ~ 3000) rows of the test split of the original dataset were processed and filtered as follows. This resulted in 978 filtered rows.
* In the original dataset, some sentences appear several times in the same article, even if they're only contained once in the original research paper.
For this reason, all dataset rows where the same sentence appeared more than once where removed.
* In the original dataset, every sentence is a separate string, and these strings are contained in arrays. Therefore, all these strings were merged in order to create one single string for each article body and one other for each article abstract.
* All line breaks were removed. |