Marcio Monteiro
commited on
Commit
·
28b1fef
1
Parent(s):
9f770cb
fix: README metadata
Browse files
README.md
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
task_categories:
|
5 |
+
- text-classification
|
6 |
+
|
7 |
+
configs:
|
8 |
+
- config_name: original
|
9 |
+
data_files:
|
10 |
+
- split: complete
|
11 |
+
path: "original.csv"
|
12 |
+
default: true
|
13 |
+
- config_name: balanced
|
14 |
+
data_files:
|
15 |
+
- split: complete
|
16 |
+
path: "balanced.csv"
|
17 |
+
|
18 |
+
dataset_info:
|
19 |
+
features:
|
20 |
+
- name: id
|
21 |
+
dtype: string
|
22 |
+
- name: reviewId
|
23 |
+
dtype: string
|
24 |
+
- name: creationDate
|
25 |
+
dtype: string
|
26 |
+
- name: criticName
|
27 |
+
dtype: string
|
28 |
+
- name: isTopCritic
|
29 |
+
dtype: bool
|
30 |
+
- name: originalScore
|
31 |
+
dtype: string
|
32 |
+
- name: reviewState
|
33 |
+
dtype:
|
34 |
+
class_label:
|
35 |
+
names:
|
36 |
+
'0': 'rotten'
|
37 |
+
'1': 'fresh'
|
38 |
+
- name: publicatioName
|
39 |
+
dtype: string
|
40 |
+
- name: reviewText
|
41 |
+
dtype: string
|
42 |
+
- name: scoreSentiment
|
43 |
+
dtype:
|
44 |
+
class_label:
|
45 |
+
names:
|
46 |
+
'0': Negative
|
47 |
+
'1': Positive
|
48 |
+
- name: reviewUrl
|
49 |
+
dtype: string
|
50 |
+
---
|