Commit
·
7a9dd99
1
Parent(s):
35235de
Update README.md
Browse files
README.md
CHANGED
@@ -8,8 +8,21 @@ datasets:
|
|
8 |
widget:
|
9 |
- text: "من أفضل الكتب التي قرأتها في هذا العام"
|
10 |
example_title: "Positive"
|
11 |
-
- text: "
|
12 |
-
example_title: "
|
|
|
|
|
13 |
---
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
widget:
|
9 |
- text: "من أفضل الكتب التي قرأتها في هذا العام"
|
10 |
example_title: "Positive"
|
11 |
+
- text: "الكتاب سيء، لا أنصح أحد بقراءته أبدا"
|
12 |
+
example_title: "Negative"
|
13 |
+
- text: "لا يمكنك الجزم بشيء حول هذا الكتاب"
|
14 |
+
example_title: "Neutral"
|
15 |
---
|
16 |
|
17 |
+
# Introduction
|
18 |
+
This model predicts the sentiment of a text if it is Positive, Neutral, or Negative. This model is a finetune version of [UBC-NLP/MARBERTv2](https://huggingface.co/UBC-NLP/MARBERTv2) on [labr](https://huggingface.co/datasets/labr).
|
19 |
+
|
20 |
+
# Data
|
21 |
+
The data used is [labr](https://huggingface.co/datasets/labr), an Arabic book reviews dataset. The sentiment is obtained from the number of stars given by each review.
|
22 |
+
|
23 |
+
| Nubmer of stars | Sentiment |
|
24 |
+
|-----------------|-----------|
|
25 |
+
| 1-2 | Negative |
|
26 |
+
| 3 | Neutral |
|
27 |
+
| 4-5 | Positive |
|
28 |
+
|