Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
English
Size:
10K - 100K
License:
Update files from the datasets library (from 1.17.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.17.0
- README.md +10 -9
- tweets_hate_speech_detection.py +1 -1
README.md
CHANGED
@@ -17,10 +17,11 @@ task_categories:
|
|
17 |
- text-classification
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
20 |
-
paperswithcode_id:
|
|
|
21 |
---
|
22 |
|
23 |
-
# Dataset Card for
|
24 |
|
25 |
## Table of Contents
|
26 |
- [Dataset Description](#dataset-description)
|
@@ -48,11 +49,11 @@ paperswithcode_id: bilingual-corpus-of-arabic-english-parallel
|
|
48 |
|
49 |
## Dataset Description
|
50 |
|
51 |
-
- **Homepage
|
52 |
-
- **Repository
|
53 |
-
- **Paper
|
54 |
- **Leaderboard:**
|
55 |
-
- **Point of Contact
|
56 |
|
57 |
### Dataset Summary
|
58 |
|
@@ -65,7 +66,7 @@ Formally, given a training sample of tweets and labels, where label ‘1’ deno
|
|
65 |
[More Information Needed]
|
66 |
|
67 |
### Languages
|
68 |
-
The tweets are primarily in English Language
|
69 |
|
70 |
## Dataset Structure
|
71 |
|
@@ -81,8 +82,8 @@ The dataset contains a label denoting is the tweet a hate speech or not
|
|
81 |
|
82 |
### Data Fields
|
83 |
|
84 |
-
* label : 1 - it is a hate
|
85 |
-
* tweet: content of the tweet as a string
|
86 |
|
87 |
### Data Splits
|
88 |
|
|
|
17 |
- text-classification
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
20 |
+
paperswithcode_id: null
|
21 |
+
pretty_name: Tweets Hate Speech Detection
|
22 |
---
|
23 |
|
24 |
+
# Dataset Card for Tweets Hate Speech Detection
|
25 |
|
26 |
## Table of Contents
|
27 |
- [Dataset Description](#dataset-description)
|
|
|
49 |
|
50 |
## Dataset Description
|
51 |
|
52 |
+
- **Homepage:** [Home](https://github.com/sharmaroshan/Twitter-Sentiment-Analysis)
|
53 |
+
- **Repository:** [Repo](https://github.com/sharmaroshan/Twitter-Sentiment-Analysis/blob/master/train_tweet.csv)
|
54 |
+
- **Paper:**
|
55 |
- **Leaderboard:**
|
56 |
+
- **Point of Contact:** [Darshan Gandhi]([email protected])
|
57 |
|
58 |
### Dataset Summary
|
59 |
|
|
|
66 |
[More Information Needed]
|
67 |
|
68 |
### Languages
|
69 |
+
The tweets are primarily in English Language.
|
70 |
|
71 |
## Dataset Structure
|
72 |
|
|
|
82 |
|
83 |
### Data Fields
|
84 |
|
85 |
+
* label : 1 - it is a hate speech, 0 - not a hate speech.
|
86 |
+
* tweet: content of the tweet as a string.
|
87 |
|
88 |
### Data Splits
|
89 |
|
tweets_hate_speech_detection.py
CHANGED
@@ -44,7 +44,7 @@ _TRAIN_DOWNLOAD_URL = (
|
|
44 |
|
45 |
|
46 |
class TweetsHateSpeechDetection(datasets.GeneratorBasedBuilder):
|
47 |
-
"""
|
48 |
|
49 |
def _info(self):
|
50 |
return datasets.DatasetInfo(
|
|
|
44 |
|
45 |
|
46 |
class TweetsHateSpeechDetection(datasets.GeneratorBasedBuilder):
|
47 |
+
"""Detecting which tweets showcase hate or racist remarks."""
|
48 |
|
49 |
def _info(self):
|
50 |
return datasets.DatasetInfo(
|