Commit
·
bfe852a
1
Parent(s):
bc92390
Update README.md
Browse files
README.md
CHANGED
|
@@ -58,16 +58,15 @@ viewer: false
|
|
| 58 |
---
|
| 59 |
# Dataset Card for LR-Sum
|
| 60 |
|
| 61 |
-
|
| 62 |
|
| 63 |
-
This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
|
| 64 |
|
| 65 |
## Dataset Details
|
| 66 |
|
| 67 |
### Dataset Description
|
| 68 |
|
| 69 |
LR-Sum is a permissively-licensed dataset created with the goal of enabling further research in automatic summarization for less-resourced languages.
|
| 70 |
-
LR-Sum contains human-written summaries for
|
| 71 |
The data is based on the collection of the Multilingual Open Text corpus where the source data is public domain newswire collected from from Voice of America websites.
|
| 72 |
LR-Sum is released under a Creative Commons license (CC BY 4.0), making it one of the most openly-licensed multilingual summarization datasets.
|
| 73 |
|
|
@@ -100,13 +99,18 @@ This dataset only includes newswire text, so models trained on the data may not
|
|
| 100 |
|
| 101 |
|
| 102 |
## Dataset Structure
|
| 103 |
-
Each field is a string:
|
| 104 |
|
|
|
|
|
|
|
|
|
|
| 105 |
'id': Article unique id
|
| 106 |
'url': URL for the news article
|
| 107 |
'title': The title of the news article
|
| 108 |
'summary': The summary of the article
|
| 109 |
'text': The full text of the news article not including title
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
## Dataset Creation
|
| 112 |
|
|
|
|
| 58 |
---
|
| 59 |
# Dataset Card for LR-Sum
|
| 60 |
|
| 61 |
+
LR-Sum is a automatic summarization dataset with a focus on less resourced languages
|
| 62 |
|
|
|
|
| 63 |
|
| 64 |
## Dataset Details
|
| 65 |
|
| 66 |
### Dataset Description
|
| 67 |
|
| 68 |
LR-Sum is a permissively-licensed dataset created with the goal of enabling further research in automatic summarization for less-resourced languages.
|
| 69 |
+
LR-Sum contains human-written summaries for 39 languages, many of which are less-resourced.
|
| 70 |
The data is based on the collection of the Multilingual Open Text corpus where the source data is public domain newswire collected from from Voice of America websites.
|
| 71 |
LR-Sum is released under a Creative Commons license (CC BY 4.0), making it one of the most openly-licensed multilingual summarization datasets.
|
| 72 |
|
|
|
|
| 99 |
|
| 100 |
|
| 101 |
## Dataset Structure
|
|
|
|
| 102 |
|
| 103 |
+
Each field is a string:
|
| 104 |
+
```
|
| 105 |
+
{
|
| 106 |
'id': Article unique id
|
| 107 |
'url': URL for the news article
|
| 108 |
'title': The title of the news article
|
| 109 |
'summary': The summary of the article
|
| 110 |
'text': The full text of the news article not including title
|
| 111 |
+
}
|
| 112 |
+
```
|
| 113 |
+
|
| 114 |
|
| 115 |
## Dataset Creation
|
| 116 |
|