Datasets:
Tasks:
Text Classification
Sub-tasks:
intent-classification
Languages:
English
Size:
10K<n<100K
License:
| # coding=utf-8 | |
| # Copyright 2020 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # Lint as: python3 | |
| """Hate speech dataset""" | |
| import csv | |
| import os | |
| import datasets | |
| _CITATION = """\ | |
| @inproceedings{gibert2018hate, | |
| title = "{Hate Speech Dataset from a White Supremacy Forum}", | |
| author = "de Gibert, Ona and | |
| Perez, Naiara and | |
| Garcia-Pablos, Aitor and | |
| Cuadros, Montse", | |
| booktitle = "Proceedings of the 2nd Workshop on Abusive Language Online ({ALW}2)", | |
| month = oct, | |
| year = "2018", | |
| address = "Brussels, Belgium", | |
| publisher = "Association for Computational Linguistics", | |
| url = "https://www.aclweb.org/anthology/W18-5102", | |
| doi = "10.18653/v1/W18-5102", | |
| pages = "11--20", | |
| } | |
| """ | |
| _DESCRIPTION = """\ | |
| These files contain text extracted from Stormfront, a white supremacist forum. A random set of | |
| forums posts have been sampled from several subforums and split into sentences. Those sentences | |
| have been manually labelled as containing hate speech or not, according to certain annotation guidelines. | |
| """ | |
| _DATA_URL = "data.zip" | |
| class HateSpeech18(datasets.GeneratorBasedBuilder): | |
| """Hate speech dataset""" | |
| def _info(self): | |
| return datasets.DatasetInfo( | |
| description=_DESCRIPTION, | |
| features=datasets.Features( | |
| { | |
| "text": datasets.Value("string"), | |
| "user_id": datasets.Value("int64"), | |
| "subforum_id": datasets.Value("int64"), | |
| "num_contexts": datasets.Value("int64"), | |
| "label": datasets.features.ClassLabel(names=["noHate", "hate", "idk/skip", "relation"]), | |
| } | |
| ), | |
| supervised_keys=None, | |
| homepage="https://github.com/Vicomtech/hate-speech-dataset", | |
| citation=_CITATION, | |
| ) | |
| def _split_generators(self, dl_manager): | |
| dl_dir = dl_manager.download_and_extract(_DATA_URL) | |
| return [ | |
| datasets.SplitGenerator( | |
| name=datasets.Split.TRAIN, gen_kwargs={"data_dir": os.path.join(dl_dir, "data")} | |
| ), | |
| ] | |
| def _generate_examples(self, data_dir): | |
| all_files_path = os.path.join(data_dir, "all_files") | |
| with open(os.path.join(data_dir, "annotations_metadata.csv"), encoding="utf-8") as csv_file: | |
| csv_reader = csv.DictReader( | |
| csv_file, quotechar='"', delimiter=",", quoting=csv.QUOTE_ALL, skipinitialspace=True | |
| ) | |
| for idx, row in enumerate(csv_reader): | |
| text_path = os.path.join(all_files_path, row.pop("file_id") + ".txt") | |
| with open(text_path, encoding="utf-8") as text_file: | |
| text = text_file.read() | |
| yield idx, { | |
| "text": text, | |
| **row, | |
| } | |