Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
German
Size:
10K - 100K
Tags:
News
License:
Add model card
Browse files
README.md
CHANGED
@@ -23,4 +23,33 @@ configs:
|
|
23 |
path: data/train-*
|
24 |
- split: test
|
25 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
path: data/train-*
|
24 |
- split: test
|
25 |
path: data/test-*
|
26 |
+
license: mit
|
27 |
+
language:
|
28 |
+
- de
|
29 |
+
pretty_name: 10kGNAD - Ten Thousand German News Articles Dataset
|
30 |
+
size_categories:
|
31 |
+
- 1M<n<10M
|
32 |
+
task_categories:
|
33 |
+
- text-classification
|
34 |
+
tags:
|
35 |
+
- News
|
36 |
---
|
37 |
+
|
38 |
+
# 10kGNAD - Ten Thousand German News Articles Dataset
|
39 |
+
|
40 |
+
German news articels, categorized. Category is the actual category name, one of: 'Etat', 'Inland', 'International', 'Kultur', 'Panorama', 'Sport', 'Web', 'Wirtschaft', 'Wissenschaft'. The label is the index as an integer.
|
41 |
+
|
42 |
+
|
43 |
+
```
|
44 |
+
DatasetDict({
|
45 |
+
train: Dataset({
|
46 |
+
features: ['category', 'text', 'label'],
|
47 |
+
num_rows: 9245
|
48 |
+
})
|
49 |
+
test: Dataset({
|
50 |
+
features: ['category', 'text', 'label'],
|
51 |
+
num_rows: 1028
|
52 |
+
})
|
53 |
+
})
|
54 |
+
```
|
55 |
+
Huggingface datasets version of https://github.com/tblock/10kGNAD
|