andyP commited on
Commit
23eb5be
·
verified ·
1 Parent(s): 3ce6c72

init commit

Browse files
Files changed (4) hide show
  1. README.md +177 -3
  2. test.csv +0 -0
  3. train.csv +0 -0
  4. validation.csv +0 -0
README.md CHANGED
@@ -1,3 +1,177 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ annotations_creators:
4
+ - expert-generated
5
+ language_creators:
6
+ - found
7
+ task_categories:
8
+ - token-classification
9
+ language:
10
+ - ro
11
+ multilinguality:
12
+ - monolingual
13
+ source_datasets:
14
+ - readerbench/ro-offense
15
+ tags:
16
+ - hate-speech-detection
17
+ task_ids:
18
+ - hate-speech-detection
19
+ pretty_name: RO-Offense-Sequences
20
+ size_categories:
21
+ - 1K<n<10K
22
+ extra_gated_prompt: 'Warning: this repository contains harmful content (abusive language,
23
+ hate speech).'
24
+ ---
25
+
26
+
27
+ # Dataset Card for "RO-Offense-Sequences"
28
+
29
+ ## Table of Contents
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
33
+ - [Languages](#languages)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Instances](#data-instances)
36
+ - [Data Fields](#data-fields)
37
+ - [Data Splits](#data-splits)
38
+ - [Dataset Creation](#dataset-creation)
39
+ - [Curation Rationale](#curation-rationale)
40
+ - [Source Data](#source-data)
41
+ - [Annotations](#annotations)
42
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
43
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
44
+ - [Social Impact of Dataset](#social-impact-of-dataset)
45
+ - [Discussion of Biases](#discussion-of-biases)
46
+ - [Other Known Limitations](#other-known-limitations)
47
+ - [Additional Information](#additional-information)
48
+ - [Dataset Curators](#dataset-curators)
49
+ - [Licensing Information](#licensing-information)
50
+ - [Citation Information](#citation-information)
51
+ - [Contributions](#contributions)
52
+
53
+ ## Dataset Description
54
+ <!--
55
+ - **Paper:** News-RO-Offense - A Romanian Offensive Language Dataset and Baseline Models Centered on News Article Comments
56
+
57
+ -->
58
+ - **Homepage:** [https://github.com/readerbench/ro-offense-sequences](https://github.com/readerbench/ro-offense-sequences)
59
+ - **Repository:** [https://github.com/readerbench/ro-offense-sequences](https://github.com/readerbench/ro-offense-sequences)
60
+ - **Point of Contact:** [Teodora-Andreea Ion](mailto:[email protected])
61
+ -
62
+ ### Dataset Summary
63
+ a novel Romanian language dataset for offensive sequence detection with manually
64
+ annotated offensive sequences from a local Romanian sports news website (gsp.ro):
65
+
66
+
67
+ Resulting in 4800 annotated messages
68
+
69
+ ### Languages
70
+
71
+ Romanian
72
+
73
+ ## Dataset Structure
74
+
75
+
76
+ ### Data Instances
77
+
78
+
79
+ An example of 'train' looks as follows.
80
+
81
+ ```
82
+ {
83
+ 'id': 5,
84
+ 'text':'PLACEHOLDER TEXT',
85
+ 'offensive_substrings': ['substr1','substr2'],
86
+ 'offensive_sequences': [(0,10), (16,20)]
87
+ }
88
+ ```
89
+
90
+
91
+ ### Data Fields
92
+
93
+ - `id`: The unique comment ID, corresponding to the ID in [RO Offense](https://huggingface.co/datasets/readerbench/ro-offense)
94
+ - `text`: full comment text
95
+ - `offensive_substrings`: a list of offensive substrings. Can contain duplicates if some offensive substring appears twice
96
+ - `offensive_sequences`: a list of tuples with (start, end) position of the offensive sequences
97
+
98
+ *Attention*: the sequences are computed for \n line sepparator! Git might convert the csv to \r\n.
99
+
100
+ ### Data Splits
101
+
102
+ | name |train|validate|test|
103
+ |---------|----:|---:|---:|
104
+ |ro|4,000|400|400|
105
+
106
+
107
+ ## Dataset Creation
108
+
109
+
110
+ ### Curation Rationale
111
+
112
+ Collecting data for abusive language classification for Romanian Language.
113
+
114
+
115
+ ### Source Data
116
+
117
+ Sports News Articles comments
118
+
119
+
120
+ #### Initial Data Collection and Normalization
121
+
122
+
123
+
124
+ #### Who are the source language producers?
125
+
126
+ Sports News Article readers
127
+
128
+
129
+ ### Annotations
130
+
131
+
132
+ #### Annotation process
133
+
134
+
135
+
136
+ #### Who are the annotators?
137
+
138
+ Native speakers
139
+
140
+ ### Personal and Sensitive Information
141
+
142
+ The data was public at the time of collection. PII removal has been performed.
143
+
144
+ ## Considerations for Using the Data
145
+
146
+
147
+
148
+ ### Social Impact of Dataset
149
+
150
+ The data definitely contains abusive language. The data could be used to develop and propagate offensive language against every target group involved, i.e. ableism, racism, sexism, ageism, and so on.
151
+
152
+ ### Discussion of Biases
153
+
154
+
155
+ ### Other Known Limitations
156
+
157
+
158
+ ## Additional Information
159
+
160
+
161
+ ### Dataset Curators
162
+
163
+
164
+ ### Licensing Information
165
+
166
+ This data is available and distributed under Apache-2.0 license
167
+
168
+ ### Citation Information
169
+
170
+ ```
171
+ tbd
172
+
173
+
174
+ ```
175
+
176
+
177
+ ### Contributions
test.csv ADDED
The diff for this file is too large to render. See raw diff
 
train.csv ADDED
The diff for this file is too large to render. See raw diff
 
validation.csv ADDED
The diff for this file is too large to render. See raw diff