File size: 1,727 Bytes
9627eea
d3abd97
 
 
 
 
 
9627eea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d3abd97
9627eea
d3abd97
 
 
 
 
 
 
9627eea
0742599
 
 
 
 
 
 
 
 
f724854
 
 
0742599
 
 
 
 
 
 
 
 
 
 
 
f724854
0742599
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- de
license: cc-by-4.0
task_categories:
- text-classification
pretty_name: GermEval 18
dataset_info:
  features:
  - name: text
    dtype: string
  - name: coarse
    dtype:
      class_label:
        names:
          '0': OTHER
          '1': OFFENSE
  - name: fine
    dtype:
      class_label:
        names:
          '0': OTHER
          '1': ABUSE
          '2': INSULT
          '3': PROFANITY
  splits:
  - name: train
    num_bytes: 826320
    num_examples: 5009
  - name: test
    num_bytes: 509105
    num_examples: 3532
  download_size: 867329
  dataset_size: 1335425
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
---
# GermEval18 Loader

- **Data Repository:** https://github.com/uds-lsv/GermEval-2018-Data
- **Data Reference:** https://doi.org/10.11588/data/0B5VML
- **Paper:** https://epub.oeaw.ac.at/0xc1aa5576_0x003a10d2.pdf

## Info
**Note:** This dataset is a loader script that pulls the data straight from the *official* GitHub repository.

**What is the difference to _philschmid/germeval18_?**: We did not get all samples, when using the former script.

Output from _philschmid/germeval18_:
```python
DatasetDict({
  train: Dataset({
      features: ['text', 'binary', 'multi'],
      num_rows: 5009
  })
  test: Dataset({
      features: ['text', 'binary', 'multi'],
      num_rows: 3398
  })
})
```
but the dataset (that our loader script is based on) contains all samples from the GermEval18 dataset:
```python
DatasetDict({
  train: Dataset({
      features: ['text', 'coarse', 'fine'],
      num_rows: 5009
  })
  test: Dataset({
      features: ['text', 'coarse', 'fine'],
      num_rows: 3532
  })
})
```