uvegesistvan commited on
Commit
92e7b5e
·
verified ·
1 Parent(s): f02c7cd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -19
README.md CHANGED
@@ -16,30 +16,30 @@ metrics:
16
  ## Model Overview
17
  This model is a multi-class emotion classifier trained to identify nine distinct emotional states in text. The classes and their corresponding labels are as follows:
18
 
19
- - **Class 0**: Neutral
20
- - **Class 1**: Joy
21
- - **Class 2**: Surprise
22
  - **Class 3**: Sadness
23
- - **Class 4**: Anger
24
- - **Class 5**: Disgust
25
- - **Class 6**: Fear
26
- - **Class 7**: Trust
27
- - **Class 8**: Mixed emotions
28
 
29
  ### Dataset and Preprocessing
30
  The dataset combines original and synthetic data to improve class balance and performance. Below are the evaluation metrics for the model:
31
 
32
  | Class | Precision | Recall | F1-Score | Support |
33
  |------------|-----------|--------|----------|---------|
34
- | Neutral (0)| 0.54 | 0.60 | 0.57 | 777 |
35
- | Joy (1) | 0.85 | 0.76 | 0.80 | 776 |
36
- | Surprise (2)| 0.91 | 0.95 | 0.93 | 776 |
37
  | Sadness (3)| 0.87 | 0.84 | 0.86 | 775 |
38
- | Anger (4) | 0.84 | 0.81 | 0.83 | 777 |
39
- | Disgust (5)| 0.64 | 0.62 | 0.63 | 776 |
40
- | Fear (6) | 0.53 | 0.55 | 0.54 | 777 |
41
- | Trust (7) | 0.75 | 0.81 | 0.78 | 776 |
42
- | Mixed emotions (8)| 0.67 | 0.65 | 0.66 | 1553 |
43
 
44
  ### Overall Metrics
45
  - **Accuracy**: 0.72
@@ -47,7 +47,9 @@ The dataset combines original and synthetic data to improve class balance and pe
47
  - **Weighted Average**: Precision = 0.73, Recall = 0.72, F1-Score = 0.73
48
 
49
  ### Performance Insights
50
- The model achieves strong performance across most classes, particularly for "Surprise" and "Sadness." However, "Fear" and "Mixed emotions" exhibit lower recall and precision, suggesting potential areas for improvement. Future development could include targeted data augmentation or specialized techniques to handle these classes.
 
 
51
 
52
  ## Model Usage
53
  ### Applications
@@ -56,12 +58,13 @@ The model achieves strong performance across most classes, particularly for "Sur
56
  - Understanding emotional context for human-computer interaction.
57
 
58
  ### Limitations
59
- - Performance varies across classes, with some (e.g., "Fear" and "Mixed emotions") showing lower metrics.
60
  - The model may not generalize well to domains outside the training data.
61
  - Ambiguities in text can lead to misclassification, especially for overlapping emotional states.
62
 
63
  ### Ethical Considerations
64
- The model's predictions might not always align with human interpretations of emotions, particularly in ambiguous or context-dependent cases. Misclassification could lead to inappropriate conclusions if used in sensitive applications (e.g., mental health monitoring or automated decision-making).
 
65
 
66
  ### Future Work
67
  - Improving performance on underrepresented classes using advanced augmentation or transfer learning techniques.
 
16
  ## Model Overview
17
  This model is a multi-class emotion classifier trained to identify nine distinct emotional states in text. The classes and their corresponding labels are as follows:
18
 
19
+ - **Class 0**: Anger
20
+ - **Class 1**: Fear
21
+ - **Class 2**: Disgust
22
  - **Class 3**: Sadness
23
+ - **Class 4**: Joy
24
+ - **Class 5**: Enthusiasm
25
+ - **Class 6**: Hope
26
+ - **Class 7**: Pride
27
+ - **Class 8**: No emotion
28
 
29
  ### Dataset and Preprocessing
30
  The dataset combines original and synthetic data to improve class balance and performance. Below are the evaluation metrics for the model:
31
 
32
  | Class | Precision | Recall | F1-Score | Support |
33
  |------------|-----------|--------|----------|---------|
34
+ | Anger (0)| 0.54 | 0.60 | 0.57 | 777 |
35
+ | Fear (1) | 0.85 | 0.76 | 0.80 | 776 |
36
+ | Disgust (2)| 0.91 | 0.95 | 0.93 | 776 |
37
  | Sadness (3)| 0.87 | 0.84 | 0.86 | 775 |
38
+ | Joy (4) | 0.84 | 0.81 | 0.83 | 777 |
39
+ | Enthusiasm (5)| 0.64 | 0.62 | 0.63 | 776 |
40
+ | Hope (6) | 0.53 | 0.55 | 0.54 | 777 |
41
+ | Pride (7) | 0.75 | 0.81 | 0.78 | 776 |
42
+ | No emotion (8)| 0.67 | 0.65 | 0.66 | 1553 |
43
 
44
  ### Overall Metrics
45
  - **Accuracy**: 0.72
 
47
  - **Weighted Average**: Precision = 0.73, Recall = 0.72, F1-Score = 0.73
48
 
49
  ### Performance Insights
50
+ The model achieves strong performance across most classes, particularly for "Sadness" and "Disgust."
51
+ However, "Enthusiasm" and "Hope" exhibit lower recall and precision, suggesting potential areas for improvement.
52
+ Future development could include targeted data augmentation or specialized techniques to handle these classes.
53
 
54
  ## Model Usage
55
  ### Applications
 
58
  - Understanding emotional context for human-computer interaction.
59
 
60
  ### Limitations
61
+ - Performance varies across classes, with some (e.g., "Enthusiasm" and "Hope") showing lower metrics.
62
  - The model may not generalize well to domains outside the training data.
63
  - Ambiguities in text can lead to misclassification, especially for overlapping emotional states.
64
 
65
  ### Ethical Considerations
66
+ The model's predictions might not always align with human interpretations of emotions, particularly in ambiguous or context-dependent cases.
67
+ Misclassification could lead to inappropriate conclusions if used in sensitive applications (e.g., mental health monitoring or automated decision-making).
68
 
69
  ### Future Work
70
  - Improving performance on underrepresented classes using advanced augmentation or transfer learning techniques.