File size: 4,617 Bytes
8d52bfe
37c8b42
cb6d434
b196c26
 
71550b3
 
37c8b42
 
 
 
 
 
8d52bfe
 
 
71550b3
 
 
 
 
 
 
 
8d52bfe
71550b3
 
 
 
 
 
8d52bfe
 
 
71550b3
8d52bfe
 
 
1da82bd
8d52bfe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1da82bd
8d52bfe
 
 
 
 
 
 
 
 
 
 
 
 
 
71550b3
8d52bfe
 
 
 
 
 
71550b3
 
8d52bfe
 
 
 
 
 
 
 
b196c26
 
 
 
71550b3
8d52bfe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
language:
- sl
license:
- other
size_categories:
- 1K<n<10K
task_categories:
- text-classification
task_ids: []
tags:
- hate-speech-detection
- offensive-language
---


Slovenian subset of the [FRENK dataset](http://hdl.handle.net/11356/1433). Also available on HuggingFace dataset hub: [English subset](https://huggingface.co/datasets/5roop/FRENK-hate-en),  [Croatian subset](https://huggingface.co/datasets/5roop/FRENK-hate-hr).

## Dataset Description

- **Homepage:** http://hdl.handle.net/11356/1433
- **Repository:** http://hdl.handle.net/11356/1433
- **Paper:** https://arxiv.org/abs/1906.02045
- **Project page** https://nl.ijs.si/frenk/


## Description of the original dataset

>The original FRENK dataset consists of comments to Facebook posts (news articles) of mainstream media outlets from Croatia, Great Britain, and Slovenia, on the topics of migrants and LGBT. The dataset contains whole discussion threads. Each comment is annotated by the type of socially unacceptable discourse (e.g., inappropriate, offensive, violent speech) and its target (e.g., migrants/LGBT, commenters, media). The annotation schema is described in detail in [https://arxiv.org/pdf/1906.02045.pdf]. Usernames in the metadata are pseudo-anonymised and removed from the comments.
>
>The data in each language (Croatian (hr), English (en), Slovenian (sl), and topic (migrants, LGBT) is divided into a training and a testing portion. The training and testing data consist of separate discussion threads, i.e., there is no cross-discussion-thread contamination between training and testing data. The sizes of the splits are the following: Croatian, migrants: 4356 training comments, 978 testing comments; Croatian LGBT: 4494 training comments, 1142 comments; English, migrants: 4540 training comments, 1285 testing comments; English, LGBT: 4819 training comments, 1017 testing comments; Slovenian, migrants: 5145 training comments, 1277 testing comments; Slovenian, LGBT: 2842 training comments, 900 testing comments.

For this dataset only the Croatian data was used. Training segment has been split into beginning 90% (published here as training split) and end 10% (published here as dev split).

## Usage in `Transformers`

```python
import datasets
ds = datasets.load_dataset("classla/FRENK-hate-sl","binary") 
```

For binary classification the following encoding is used:


```python
_CLASS_MAP_BINARY = {
    'Acceptable': 0, 
    'Offensive': 1, 
}
```
The original labels are available if the dataset is loaded with the `multiclass` option:

```python
import datasets
ds = datasets.load_dataset("classla/FRENK-hate-sl","multiclass").
```

In this case the encoding used is:
```python
_CLASS_MAP_MULTICLASS = {
    'Acceptable speech': 0, 
    'Inappropriate': 1, 
    'Background offensive': 2,
    'Other offensive': 3, 
    'Background violence': 4,
    'Other violence': 5, 
}
```

## Data structure

* `text`: text
* `target`: who is the target of the hate-speech text ("no target", "commenter", "target" (migrants or LGBT, depending on the topic), or "related to" (again, the topic))
* `topic`: whether the text relates to lgbt or migrants hate-speech domains
* `label`: label of the text instance, see above.

## Data instance


```
{'text': 'Otroci so odprti in brez predsodkov.Predsodke jim vcepimo starejši,starši,družba,družina...Če otroku lepo razložimo,razume.Nikoli ni dobro,da omejujemo otroka,njegovo inteligenco in duhovnost z lastnim ne razumevanjem nečesa ali nekoga.Predsodek je miselni zapor,prepreka,da bi bili svobodni.Ljubezen je svoboda.Sem ZA spremembo zakona!Srečno :D',
 'target': 'No target',
 'topic': 'lgbt',
 'label': 0}
 ```

## Licensing information

CLARIN.SI Licence ACA ID-BY-NC-INF-NORED 1.0

## Citation information

When using this dataset please cite the following paper:

```
@misc{ljubešić2019frenk,
      title={The FRENK Datasets of Socially Unacceptable Discourse in Slovene and English}, 
      author={Nikola Ljubešić and Darja Fišer and Tomaž Erjavec},
      year={2019},
      eprint={1906.02045},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/1906.02045}
}
```

The original dataset can be cited as
 ```
@misc{11356/1433,
 title = {Offensive language dataset of Croatian, English and Slovenian comments {FRENK} 1.0},
 author = {Ljube{\v s}i{\'c}, Nikola and Fi{\v s}er, Darja and Erjavec, Toma{\v z}},
 url = {http://hdl.handle.net/11356/1433},
 note = {Slovenian language resource repository {CLARIN}.{SI}},
 copyright = {{CLARIN}.{SI} Licence {ACA} {ID}-{BY}-{NC}-{INF}-{NORED} 1.0},
 year = {2021} }
 ```