File size: 2,639 Bytes
feebf33 a78f9ec feebf33 a78f9ec 87137d8 a78f9ec b1a262e a78f9ec b1a262e |
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 |
# Dataset Card for sarcasm_headlines_multilingual
size_categories:
- 100k<n
source_datasets:
- original
- https://www.kaggle.com/datasets/rmisra/news-headlines-dataset-for-sarcasm-detection
- https://www.kaggle.com/datasets/maxscheijen/dutch-news-articles
languages:
- en
- it
- nl
multilinguality:
- multilingual
task_categories:
- text_classification
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-instances)
- [Data Splits](#data-instances)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
## Dataset Description
- Repository: https://github.com/helinivan/multilingual-sarcasm-detector
### Dataset Summary
Dataset consists of news article headlines in Dutch, English and Italian. The news article headlines are both from actual news sources and sarcastic/satirical newspapers. The news article is determined sarcastic/non-sarcastic based on the news article source.
The sources of news articles are:
- The Huffington Post (en, non-sarcastic)
- The Onion (en, sarcastic)
- NOS (nl, non-sarcastic)
- De Speld (nl, sarcastic)
- Il Giornale (it, non-sarcastic)
- Lercio (it, sarcastic)
### Languages
`en`, `nl`, `it`
## Dataset Structure
### Data Instances
total_length: 67480
sarcastic: 25,609
non_sarcastic: 41,817
english: 22,837
dutch: 20,771
italian: 23,871
### Data Fields
- article_url: str
- article_title: str
- is_sarcastic: int
- lang: str
- title_length: int
## Dataset Creation
### Source Data
English news article titles are gathered from this Kaggle dataset: https://www.kaggle.com/datasets/rmisra/news-headlines-dataset-for-sarcasm-detection
Dutch non-sarcastic news article titles are gathered from this Kaggle dataset: https://www.kaggle.com/datasets/maxscheijen/dutch-news-articles
Rest of the data is scraped directly from the newspapers. |