emotone-ar-cicling2017/emotone_ar
Viewer • Updated • 10.1k • 225 • 13
How to use hatemnoaman/bert-base-arabic-finetuned-emotion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="hatemnoaman/bert-base-arabic-finetuned-emotion") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")
model = AutoModelForSequenceClassification.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")This model is a fine-tuned version of asafaya/bert-base-arabic on the emotone_ar dataset. It achieves the following results on the evaluation set:
-Noaman, H. (2023). Improved Emotion Detection Framework for Arabic Text using Transformer Models.
Advanced Engineering Technology and Application, 12(2), 1-11.
@article{noaman2023improved,
title={Improved Emotion Detection Framework for Arabic Text using Transformer Models},
author={Noaman, Hatem},
journal={Advanced Engineering Technology and Application},
volume={12},
number={2},
pages={1--11},
year={2023},
publisher={Fayoum University}
}
You can use this model by
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")
model = AutoModel.from_pretrained("hatemnoaman/bert-base-arabic-finetuned-emotion")
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
|---|---|---|---|---|---|
| 1.3476 | 1.0 | 142 | 0.8911 | 0.7008 | 0.6812 |
| 0.8204 | 2.0 | 284 | 0.8175 | 0.7276 | 0.7212 |
| 0.6227 | 3.0 | 426 | 0.8392 | 0.7376 | 0.7302 |
| 0.4816 | 4.0 | 568 | 0.8531 | 0.7435 | 0.7404 |
| 0.378 | 5.0 | 710 | 0.8817 | 0.7396 | 0.7388 |
| 0.3134 | 6.0 | 852 | 0.8965 | 0.7416 | 0.7406 |