FabioDataGeek commited on
Commit
c49a7e8
·
verified ·
1 Parent(s): 70aeb3a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +64 -56
README.md CHANGED
@@ -1,58 +1,66 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: label_text
7
- dtype: string
8
- - name: label
9
- dtype: int64
10
- - name: sentiment_text
11
- dtype: string
12
- - name: sentiment
13
- dtype: int64
14
- - name: emotion_text
15
- dtype: string
16
- - name: emotion
17
- dtype: int64
18
- - name: sentiment_scores
19
- struct:
20
- - name: NEG
21
- dtype: float64
22
- - name: NEU
23
- dtype: float64
24
- - name: POS
25
- dtype: float64
26
- - name: emotion_scores
27
- struct:
28
- - name: anger
29
- dtype: float64
30
- - name: disgust
31
- dtype: float64
32
- - name: fear
33
- dtype: float64
34
- - name: joy
35
- dtype: float64
36
- - name: others
37
- dtype: float64
38
- - name: sadness
39
- dtype: float64
40
- - name: surprise
41
- dtype: float64
42
- splits:
43
- - name: train
44
- num_bytes: 1835903
45
- num_examples: 6493
46
- - name: test
47
- num_bytes: 477111
48
- num_examples: 1620
49
- download_size: 1539085
50
- dataset_size: 2313014
51
- configs:
52
- - config_name: default
53
- data_files:
54
- - split: train
55
- path: data/train-*
56
- - split: test
57
- path: data/test-*
58
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language:
5
+ - es
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: 'INTENT-ES'
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - text-classification
19
+ task_ids:
20
+ - intent-classification
21
+ - sentiment-classification
22
+ - emotion-classification
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ---
24
+
25
+ # INTENT-ES Dataset
26
+
27
+ This dataset contains Spanish language texts labeled with:
28
+
29
+ 1. Intent classification (13 classes):
30
+ - 0: Threat
31
+ - 1: Criticism
32
+ - 2: Desire
33
+ - 3: Praise
34
+ - 4: Emotional
35
+ - 5: Informative
36
+ - 6: Command
37
+ - 7: Personal Opinion
38
+ - 8: Request
39
+ - 9: Question
40
+ - 10: Promise
41
+ - 11: Sarcasm/Joke
42
+ - 12: Suggestion
43
+
44
+
45
+ 2. Sentiment analysis (3 classes):
46
+ - 0: NEG
47
+ - 1: NEU
48
+ - 2: POS
49
+
50
+
51
+ 3. Emotion detection (7 classes):
52
+ - 0: others
53
+ - 1: joy
54
+ - 2: sadness
55
+ - 3: anger
56
+ - 4: surprise
57
+ - 5: disgust
58
+ - 6: fear
59
+
60
+
61
+ Each entry in the dataset includes the original text, the intent label and its text description,
62
+ the sentiment and emotion labels (both as numeric IDs and as text), and confidence scores for sentiment and emotion classification.
63
+
64
+ ## Label Distributions
65
+
66
+ The dataset has 6493 training examples and 1620 test examples.