irfan-ahmad commited on
Commit
db1149c
·
verified ·
1 Parent(s): cfa2395

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -23
README.md CHANGED
@@ -1,23 +1,78 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: review
5
- dtype: string
6
- - name: appName
7
- dtype: string
8
- - name: platform
9
- dtype: string
10
- - name: label
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 544820
15
- num_examples: 2900
16
- download_size: 252805
17
- dataset_size: 544820
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
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
+