add dataset_info in dataset metadata
Browse files
README.md
CHANGED
@@ -14,44 +14,66 @@ train-eval-index:
|
|
14 |
text: text
|
15 |
sentiment: target
|
16 |
metrics:
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
---
|
56 |
|
57 |
# Dataset Card for "sentiment140"
|
@@ -213,4 +235,4 @@ The data fields are the same among all splits.
|
|
213 |
|
214 |
### Contributions
|
215 |
|
216 |
-
Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.
|
|
|
14 |
text: text
|
15 |
sentiment: target
|
16 |
metrics:
|
17 |
+
- type: accuracy
|
18 |
+
name: Accuracy
|
19 |
+
- type: f1
|
20 |
+
name: F1 macro
|
21 |
+
args:
|
22 |
+
average: macro
|
23 |
+
- type: f1
|
24 |
+
name: F1 micro
|
25 |
+
args:
|
26 |
+
average: micro
|
27 |
+
- type: f1
|
28 |
+
name: F1 weighted
|
29 |
+
args:
|
30 |
+
average: weighted
|
31 |
+
- type: precision
|
32 |
+
name: Precision macro
|
33 |
+
args:
|
34 |
+
average: macro
|
35 |
+
- type: precision
|
36 |
+
name: Precision micro
|
37 |
+
args:
|
38 |
+
average: micro
|
39 |
+
- type: precision
|
40 |
+
name: Precision weighted
|
41 |
+
args:
|
42 |
+
average: weighted
|
43 |
+
- type: recall
|
44 |
+
name: Recall macro
|
45 |
+
args:
|
46 |
+
average: macro
|
47 |
+
- type: recall
|
48 |
+
name: Recall micro
|
49 |
+
args:
|
50 |
+
average: micro
|
51 |
+
- type: recall
|
52 |
+
name: Recall weighted
|
53 |
+
args:
|
54 |
+
average: weighted
|
55 |
+
dataset_info:
|
56 |
+
features:
|
57 |
+
- name: text
|
58 |
+
dtype: string
|
59 |
+
- name: date
|
60 |
+
dtype: string
|
61 |
+
- name: user
|
62 |
+
dtype: string
|
63 |
+
- name: sentiment
|
64 |
+
dtype: int32
|
65 |
+
- name: query
|
66 |
+
dtype: string
|
67 |
+
config_name: sentiment140
|
68 |
+
splits:
|
69 |
+
- name: test
|
70 |
+
num_bytes: 73365
|
71 |
+
num_examples: 498
|
72 |
+
- name: train
|
73 |
+
num_bytes: 225742946
|
74 |
+
num_examples: 1600000
|
75 |
+
download_size: 81363704
|
76 |
+
dataset_size: 225816311
|
77 |
---
|
78 |
|
79 |
# Dataset Card for "sentiment140"
|
|
|
235 |
|
236 |
### Contributions
|
237 |
|
238 |
+
Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.
|