AI-Roadmap commited on
Commit
af5dca3
·
verified ·
1 Parent(s): 51a303d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -25
README.md CHANGED
@@ -1,27 +1,42 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: label
7
- dtype: string
8
- - name: dataType
9
- dtype: string
10
- - name: communityName
11
- dtype: string
12
- - name: datetime
13
- dtype: string
14
- - name: emotion
15
- dtype: string
16
- splits:
17
- - name: train
18
- num_bytes: 1114987
19
- num_examples: 3863
20
- download_size: 679759
21
- dataset_size: 1114987
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: "Test_Emotion_Classification"
3
+ license: apache-2.0 # SPDX identifier
4
+ language: en
5
+ tags:
6
+ - text-classification
7
+ - emotion
8
+ task_categories:
9
+ - text-classification
10
+ pipeline_tag: text-classification
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # Test_Emotion_Classification
14
+
15
+ A dataset of user-provided texts labeled with Ekman’s six basic emotions, filtered to only include entries where an emotion was detected.
16
+
17
+ **Total examples**: 3863
18
+
19
+ ## Examples per Emotion
20
+ - **Anger**: 875
21
+ - **Disgust**: 523
22
+ - **Fear**: 232
23
+ - **Joy**: 1443
24
+ - **Sadness**: 492
25
+ - **Surprise**: 298
26
+
27
+ ## Dataset Structure
28
+
29
+ | Column | Type | Description |
30
+ | ----------- | ------- | --------------------------------------------------------- |
31
+ | text | string | The original input text. |
32
+ | emotion | string | One of joy, sadness, anger, fear, surprise, disgust. |
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+ ds = load_dataset("AI-Roadmap/test_emotion_classification")
39
+ print(ds["train"][0])
40
+ ```
41
+
42
+ License: CC-BY-4.0