Update README.md
Browse files
README.md
CHANGED
@@ -1,23 +1,78 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
-
|
20 |
-
|
21 |
-
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# AURA-Classification
|
2 |
+
|
3 |
+
## Dataset Description
|
4 |
+
|
5 |
+
The AURA (App User Review in Arabic) Classification dataset is a collection of 2,900 Arabic-language app reviews collected from various mobile applications. This dataset is primarily designed for text classification tasks.
|
6 |
+
|
7 |
+
### Features
|
8 |
+
|
9 |
+
The dataset includes the following fields:
|
10 |
+
|
11 |
+
- **review**: The text of the review in Arabic.
|
12 |
+
|
13 |
+
- **appName**: The name of the application being reviewed.
|
14 |
+
|
15 |
+
- **platform**: The platform (iOS or Android) where the review was posted.
|
16 |
+
|
17 |
+
- **label**: The classification label for the review, categorized as:
|
18 |
+
|
19 |
+
- `bug_report`: The review highlights a bug or issue in the app.
|
20 |
+
- `improvement_request`: The review suggests improvements or features.
|
21 |
+
- `rating`: The review expresses a general rating or opinion.
|
22 |
+
- `others`: Miscellaneous or uncategorized reviews.
|
23 |
+
|
24 |
+
### Dataset Statistics
|
25 |
+
|
26 |
+
- **Total Reviews**: 2,900
|
27 |
+
- **Platforms**: iOS, Android
|
28 |
+
- **Applications**: Multiple apps from diverse categories.
|
29 |
+
- **Labels Distribution**: The dataset is labeled into four categories for multi-class classification tasks.
|
30 |
+
|
31 |
+
### Example Entry
|
32 |
+
|
33 |
+
```json
|
34 |
+
{
|
35 |
+
"review": "يبيله تصليحات كثير",
|
36 |
+
"appName": "OSN - Streaming App",
|
37 |
+
"platform": "ios",
|
38 |
+
"label": "bug_report"
|
39 |
+
}
|
40 |
+
```
|
41 |
+
|
42 |
+
## Use Cases
|
43 |
+
|
44 |
+
This dataset is suitable for:
|
45 |
+
|
46 |
+
- Text classification (e.g., topic classification, issue identification).
|
47 |
+
|
48 |
+
- Multilingual NLP research focused on Arabic.
|
49 |
+
|
50 |
+
- Fine-tuning models for app review classification.
|
51 |
+
|
52 |
+
## Citation
|
53 |
+
|
54 |
+
If you use this dataset, please cite it as:
|
55 |
+
|
56 |
+
```
|
57 |
+
@article{Aljizani2025,
|
58 |
+
title={Arabic App Reviews: Analysis and Classification},
|
59 |
+
author={Aljeezani, Othman and Alomari, Dorieh and Ahmad, Irfan},
|
60 |
+
journal={ACM Transactions on Asian Language Information Processing (TALIP)},
|
61 |
+
pages={1--28},
|
62 |
+
year={to-appear},
|
63 |
+
publisher={ACM New York, NY, USA},
|
64 |
+
}
|
65 |
+
```
|
66 |
+
|
67 |
+
## License
|
68 |
+
|
69 |
+
This dataset is shared under the [MIT License](https://opensource.org/licenses/MIT). Please ensure appropriate attribution when using this dataset.
|
70 |
+
|
71 |
+
## Acknowledgments
|
72 |
+
|
73 |
+
Special thanks to the contributors and reviewers who made this dataset possible.
|
74 |
+
|
75 |
+
## Contact
|
76 |
+
|
77 |
+
For questions or feedback, please reach out to the corresponding author.
|
78 |
+
|