KhaldiAbderrhmane
commited on
2nd LL
Browse files
README.md
CHANGED
@@ -20,16 +20,19 @@ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co
|
|
20 |
- Accuracy: 0.936
|
21 |
|
22 |
## Model description
|
|
|
23 |
|
24 |
-
More information needed
|
25 |
|
26 |
## Intended uses & limitations
|
27 |
|
28 |
-
|
|
|
|
|
|
|
29 |
|
30 |
## Training and evaluation data
|
31 |
|
32 |
-
|
33 |
|
34 |
## Training procedure
|
35 |
|
|
|
20 |
- Accuracy: 0.936
|
21 |
|
22 |
## Model description
|
23 |
+
This model is a simple Pytorch Custom Model that uses BERT to classify the emotions of a given text
|
24 |
|
|
|
25 |
|
26 |
## Intended uses & limitations
|
27 |
|
28 |
+
- It only supports English for now (am willing to add French next)
|
29 |
+
- The input text has a limit in size, it can suit a mid-size paragraph easily but can't handle large documents (you can bypass this by dividing the document to paragraphs and make a weights summation)
|
30 |
+
- The emotions it can recognize are limited (the 6 major emotions) so it can't detail to mixed psychological outcomes
|
31 |
+
- Fine Tuning time : well we all know how BERT can be slow sometimes so i suggest for anyone who wants to develop over the idea to use DistelBERT for faster results
|
32 |
|
33 |
## Training and evaluation data
|
34 |
|
35 |
+
This dataset contains two key columns: 'text' and 'label'. The 'label' column represents six different emotion classes: sadness (0), joy (1), love (2), anger (3), fear (4), and surprise (5). Get ready to dive deep into the world of human emotions
|
36 |
|
37 |
## Training procedure
|
38 |
|