Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
Arabic
Size:
1K - 10K
License:
Commit
•
b9fd396
1
Parent(s):
18cafba
Replace YAML keys from int to str
Browse filesReplace YAML metadata integer keys with strings, as the Hub does not support integers.
See: https://github.com/huggingface/datasets/issues/5275
README.md
CHANGED
@@ -17,7 +17,6 @@ task_categories:
|
|
17 |
- text-classification
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
20 |
-
paperswithcode_id: null
|
21 |
pretty_name: ArRestReviews
|
22 |
dataset_info:
|
23 |
features:
|
@@ -25,8 +24,8 @@ dataset_info:
|
|
25 |
dtype:
|
26 |
class_label:
|
27 |
names:
|
28 |
-
0: negative
|
29 |
-
1: positive
|
30 |
- name: text
|
31 |
dtype: string
|
32 |
- name: restaurant_id
|
|
|
17 |
- text-classification
|
18 |
task_ids:
|
19 |
- sentiment-classification
|
|
|
20 |
pretty_name: ArRestReviews
|
21 |
dataset_info:
|
22 |
features:
|
|
|
24 |
dtype:
|
25 |
class_label:
|
26 |
names:
|
27 |
+
'0': negative
|
28 |
+
'1': positive
|
29 |
- name: text
|
30 |
dtype: string
|
31 |
- name: restaurant_id
|