Commit
·
3142c31
1
Parent(s):
f5f1c53
Update README.md
Browse files
README.md
CHANGED
@@ -38,13 +38,33 @@ It achieves the following results on the evaluation set:
|
|
38 |
- Accuracy: 0.7416
|
39 |
- F1: 0.7406
|
40 |
|
41 |
-
|
|
|
|
|
|
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
-
More information needed
|
48 |
|
49 |
## Training and evaluation data
|
50 |
|
@@ -82,5 +102,4 @@ The following hyperparameters were used during training:
|
|
82 |
- Datasets 2.8.0
|
83 |
- Tokenizers 0.13.2
|
84 |
|
85 |
-
|
86 |
-
-Noaman, H. (2023). Improved Emotion Detection Framework for Arabic Text using Transformer Models. Advanced Engineering Technology and Application, 12(2), 1-11.
|
|
|
38 |
- Accuracy: 0.7416
|
39 |
- F1: 0.7406
|
40 |
|
41 |
+
### Cite this model
|
42 |
+
```
|
43 |
+
-Noaman, H. (2023). Improved Emotion Detection Framework for Arabic Text using Transformer Models.
|
44 |
+
Advanced Engineering Technology and Application, 12(2), 1-11.
|
45 |
|
46 |
+
@article{noaman2023improved,
|
47 |
+
title={Improved Emotion Detection Framework for Arabic Text using Transformer Models},
|
48 |
+
author={Noaman, Hatem},
|
49 |
+
journal={Advanced Engineering Technology and Application},
|
50 |
+
volume={12},
|
51 |
+
number={2},
|
52 |
+
pages={1--11},
|
53 |
+
year={2023},
|
54 |
+
publisher={Fayoum University}
|
55 |
+
}
|
56 |
+
```
|
57 |
|
58 |
+
## Load Pretrained Model
|
59 |
+
You can use this model by
|
60 |
+
|
61 |
+
```python
|
62 |
+
from transformers import AutoTokenizer, AutoModel
|
63 |
+
|
64 |
+
tokenizer = AutoTokenizer.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")
|
65 |
+
model = AutoModel.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")
|
66 |
+
```
|
67 |
|
|
|
68 |
|
69 |
## Training and evaluation data
|
70 |
|
|
|
102 |
- Datasets 2.8.0
|
103 |
- Tokenizers 0.13.2
|
104 |
|
105 |
+
|
|