Update README.md
Browse files
README.md
CHANGED
|
@@ -15,11 +15,43 @@ dataset_info:
|
|
| 15 |
dtype: string
|
| 16 |
splits:
|
| 17 |
- name: train
|
| 18 |
-
num_bytes: 107545823
|
| 19 |
num_examples: 21847
|
| 20 |
download_size: 63956047
|
| 21 |
-
dataset_size: 107545823
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
---
|
| 23 |
-
# Dataset Card for "tagesschau-2018-2023"
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
dtype: string
|
| 16 |
splits:
|
| 17 |
- name: train
|
| 18 |
+
num_bytes: 107545823
|
| 19 |
num_examples: 21847
|
| 20 |
download_size: 63956047
|
| 21 |
+
dataset_size: 107545823
|
| 22 |
+
language:
|
| 23 |
+
- de
|
| 24 |
+
size_categories:
|
| 25 |
+
- 10K<n<100K
|
| 26 |
---
|
|
|
|
| 27 |
|
| 28 |
+
# Tagesschau Archive Article Dataset
|
| 29 |
+
|
| 30 |
+
A scrape of Tagesschau.de articles from 01.01.2018 to 26.04.2023. Find all source code in [github.com/bjoernpl/tagesschau](https://github.com/bjoernpl/tagesschau).
|
| 31 |
+
|
| 32 |
+
## Dataset Information
|
| 33 |
+
CSV structure:
|
| 34 |
+
|
| 35 |
+
| Field | Description |
|
| 36 |
+
| --- | --- |
|
| 37 |
+
| `date` | Date of the article |
|
| 38 |
+
| `headline` | Title of the article |
|
| 39 |
+
| `short_headline` | A short headline / Context |
|
| 40 |
+
| `short_text` | A brief summary of the article |
|
| 41 |
+
| `article` | The full text of the article |
|
| 42 |
+
| `href` | The href of the article on tagesschau.de |
|
| 43 |
+
|
| 44 |
+
Size:
|
| 45 |
+
|
| 46 |
+
The final dataset (2018-today) contains 225202 articles from 1942 days. Of these articles only
|
| 47 |
+
21848 are unique (Tagesschau often keeps articles in circulation for ~1 month). The total download
|
| 48 |
+
size is ~65MB.
|
| 49 |
+
|
| 50 |
+
Cleaning:
|
| 51 |
+
|
| 52 |
+
- Duplicate articles are removed
|
| 53 |
+
- Articles with empty text are removed
|
| 54 |
+
- Articles with empty short_texts are removed
|
| 55 |
+
- Articles, headlines and short_headlines are stripped of leading and trailing whitespace
|
| 56 |
+
|
| 57 |
+
More details in [`clean.py`](https://github.com/bjoernpl/tagesschau/blob/main/clean.py).
|