HagerAbbas commited on
Commit
325be8e
·
verified ·
1 Parent(s): 72c39c6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -2
README.md CHANGED
@@ -20,11 +20,21 @@ It achieves the following results on the evaluation set:
20
 
21
  ## Model description
22
 
23
- More information needed
 
 
 
 
 
24
 
25
  ## Intended uses & limitations
26
 
27
- More information needed
 
 
 
 
 
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