File size: 3,665 Bytes
411068d c1db91a |
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
---
license: cc
task_categories:
- summarization
language:
- as
- bh
- bn
- en
- gu
- hi
- kn
- ml
- mr
- ne
- or
- pa
- ta
- te
- ur
pretty_name: varta
size_categories:
- 10M<n<100M
---
# Dataset Card for Varta
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
Varta is a diverse, challenging, large-scale, multilingual, high-quality headline generation dataset containing 41.8 million news articles in 14 Indic languages and English.
The data is crawled from DailyHunt, a popular news aggregator in India that pulls high-quality articles from multiple trusted and reputed news publishers.
### Languages
- as
- bh
- bn
- en
- gu
- hi
- kn
- ml
- mr
- ne
- or
- pa
- ta
- te
- ur
## Dataset Structure
### Data Instances
```
{
"id":"n400000150",
"langCode":"as",
"source_url":"https://www.etvbharat.com/assamese/assam/bharat/militant-hideout-destroyed-on-srinagar-bandipora-highway/assam20220630074145729729173",
"dh_url":"https://m.dailyhunt.in/news/india/assamese/etvbharatassamese-epaper-dh6b381d65c3344bbcad9a06ee28b4ab2a/boma+nikshepeve+dhbans+kva+hl+santvasabadiv+aatmagopanasthali-newsid-n400000150"
}
```
### Data Fields
- id: unique identifier for the artilce on DailyHunt. This id will be used to recreate the dataset.
- langCode: ISO 639-1 language code
- source_url: the url that points to the article on the website of the original publisher
- dh_url: the url that points to the article on DailyHunt
### Data Splits
From every language, we randomly sample 10,000 articles each for validation and testing. We also ensure that at least 80% of a language’s data is available for training.
Therefore, if a language has less than 100,000 articles, we restrict its validation and test splits to 10% of its size.
We also create a SMALL training set by limiting the number of articles from each language to 100K.
This SMALL training set with a size of 1.3M is used in all our fine-tuning experiments.
### Data Recreation
To recreate the dataset, follow this [README file](https://github.com/rahular/varta/tree/main/crawler#README.md).
### Source Data
https://m.dailyhunt.in/
### Limitations
This work is mainly dedicated to the curation of a new multilingual dataset for Indic languages, many of which are low-resource languages. During data collection, we face several limitations that can potentially result in ethical concerns.
Some of the important ones are mentioned below:
- Our dataset contains only those articles written by DailyHunt’s partner publishers. This has the potential to result in a bias towards a particular narrative or ideology that can affect the representativeness and diversity of the dataset.
- Another limitation is the languages represented in V ̄arta. Out of 22 languages with official status in India, our dataset has only 13. There are 122 major languages spoken by at least 10,000 people and 159 other languages which are extremely low-resourced. None of these languages are represented in our dataset.
- We do not perform any kind of debiasing on Varta. This means that societal and cultural biases may exist in the dataset, which can adversely affect the fairness and inclusivity of the models trained on it.
### Licensing Information
Apache License 2.0
### Citation Information
```
@misc{aralikatte2023varta,
title={V\=arta: A Large-Scale Headline-Generation Dataset for Indic Languages},
author={Rahul Aralikatte and Ziling Cheng and Sumanth Doddapaneni and Jackie Chi Kit Cheung},
year={2023},
eprint={2305.05858},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
``` |