Update README.md
Browse files
README.md
CHANGED
|
@@ -20,11 +20,21 @@ It achieves the following results on the evaluation set:
|
|
| 20 |
|
| 21 |
## Model description
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Intended uses & limitations
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Training and evaluation data
|
| 30 |
|
|
|
|
| 20 |
|
| 21 |
## Model description
|
| 22 |
|
| 23 |
+
This model is fine-tuned for Arabic Sentiment Analysis. It can classify Arabic text into different emotional categories (Positive/Negative).
|
| 24 |
+
|
| 25 |
+
- **Developed by:** Hager Abbas
|
| 26 |
+
- **Language:** Arabic
|
| 27 |
+
- **Model Type:** Text Classification
|
| 28 |
+
- **Fine-tuned from:** [اسم الموديل الأصلي اللي استخدمناه، غالباً bert-base-arabic]
|
| 29 |
|
| 30 |
## Intended uses & limitations
|
| 31 |
|
| 32 |
+
This model is intended for analyzing social media posts, customer reviews, and general Arabic text to determine sentiment.
|
| 33 |
+
## How to use
|
| 34 |
+
```python
|
| 35 |
+
from transformers import pipeline
|
| 36 |
+
classifier = pipeline("sentiment-analysis", model="HagerAbbas/اسم-الموديل-بتاعك")
|
| 37 |
+
classifier("أنا سعيد جداً بهذا الإنجاز")
|
| 38 |
|
| 39 |
## Training and evaluation data
|
| 40 |
|