Update README.md
Browse files
README.md
CHANGED
@@ -26,4 +26,46 @@ dataset_info:
|
|
26 |
num_examples: 3532
|
27 |
download_size: 1282870
|
28 |
dataset_size: 1335425
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
num_examples: 3532
|
27 |
download_size: 1282870
|
28 |
dataset_size: 1335425
|
29 |
+
license: cc-by-4.0
|
30 |
+
task_categories:
|
31 |
+
- text-classification
|
32 |
+
language:
|
33 |
+
- de
|
34 |
+
pretty_name: GermEval 18
|
35 |
---
|
36 |
+
# GermEval18 Loader
|
37 |
+
|
38 |
+
- **Data Repository:** https://github.com/uds-lsv/GermEval-2018-Data
|
39 |
+
- **Data Reference:** https://doi.org/10.11588/data/0B5VML
|
40 |
+
- **Paper:** https://epub.oeaw.ac.at/0xc1aa5576_0x003a10d2.pdf
|
41 |
+
|
42 |
+
## Info
|
43 |
+
**Note:** This dataset is a loader script that pulls the data straight from the *official* GitHub repository.
|
44 |
+
**Difference to philschmid/germeval18?**: We did not get all samples, when using the former script.
|
45 |
+
|
46 |
+
Output from *philschmid/germeval18*:
|
47 |
+
```python
|
48 |
+
DatasetDict({
|
49 |
+
train: Dataset({
|
50 |
+
features: ['text', 'binary', 'multi'],
|
51 |
+
num_rows: 5009
|
52 |
+
})
|
53 |
+
test: Dataset({
|
54 |
+
features: ['text', 'binary', 'multi'],
|
55 |
+
num_rows: 3398
|
56 |
+
})
|
57 |
+
})
|
58 |
+
```
|
59 |
+
but the dataset (that our loader script is based on) contains more samples:
|
60 |
+
```python
|
61 |
+
DatasetDict({
|
62 |
+
train: Dataset({
|
63 |
+
features: ['text', 'coarse', 'fine'],
|
64 |
+
num_rows: 5009
|
65 |
+
})
|
66 |
+
test: Dataset({
|
67 |
+
features: ['text', 'coarse', 'fine'],
|
68 |
+
num_rows: 3532
|
69 |
+
})
|
70 |
+
})
|
71 |
+
```
|