Datasets:
Janosch Hoefer
commited on
Commit
•
a6b53b6
1
Parent(s):
d139a80
pushed data to qa
Browse files- README.md +30 -3
- tweetyface.py +2 -2
README.md
CHANGED
@@ -70,15 +70,42 @@ English, German
|
|
70 |
|
71 |
### Data Instances
|
72 |
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
### Data Fields
|
76 |
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
|
79 |
### Data Splits
|
80 |
|
81 |
-
|
|
|
|
|
|
|
82 |
|
83 |
## Dataset Creation
|
84 |
|
|
|
70 |
|
71 |
### Data Instances
|
72 |
|
73 |
+
#### english
|
74 |
+
|
75 |
+
- **Size of downloaded dataset files:** 4.77 MB
|
76 |
+
- **Size of the generated dataset:** 5.92 MB
|
77 |
+
- **Total amount of disk used:** 4.77 MB
|
78 |
+
|
79 |
+
#### german
|
80 |
+
|
81 |
+
- **Size of downloaded dataset files:** 2.58 MB
|
82 |
+
- **Size of the generated dataset:** 3.10 MB
|
83 |
+
- **Total amount of disk used:** 2.59 MB
|
84 |
+
|
85 |
+
An example of 'validation' looks as follows.
|
86 |
+
|
87 |
+
```
|
88 |
+
{
|
89 |
+
"text": "@SpaceX @Space_Station About twice as much useful mass to orbit as rest of Earth combined",
|
90 |
+
"label": elonmusk,
|
91 |
+
"idx":1001283
|
92 |
+
}
|
93 |
+
```
|
94 |
|
95 |
### Data Fields
|
96 |
|
97 |
+
The data fields are the same among all splits and languages.
|
98 |
+
|
99 |
+
- `text`: a `string` feature.
|
100 |
+
- `label`: a classification label
|
101 |
+
- `idx`: an `int64` feature.
|
102 |
|
103 |
### Data Splits
|
104 |
|
105 |
+
| name | train | validation |
|
106 |
+
| ------- | ----: | ---------: |
|
107 |
+
| english | 27857 | 6965 |
|
108 |
+
| german | 10254 | 2564 |
|
109 |
|
110 |
## Dataset Creation
|
111 |
|
tweetyface.py
CHANGED
@@ -28,7 +28,7 @@ The dataset has been created utilizing a crawler for the Twitter API.\n \
|
|
28 |
|
29 |
_HOMEPAGE = "https://github.com/ml-projects-kiel/OpenCampus-ApplicationofTransformers"
|
30 |
|
31 |
-
URL = "https://raw.githubusercontent.com/ml-projects-kiel/OpenCampus-ApplicationofTransformers/
|
32 |
|
33 |
_URLs = {
|
34 |
"english": {
|
@@ -41,7 +41,7 @@ _URLs = {
|
|
41 |
},
|
42 |
}
|
43 |
|
44 |
-
_VERSION = "0.
|
45 |
|
46 |
_LICENSE = """
|
47 |
"""
|
|
|
28 |
|
29 |
_HOMEPAGE = "https://github.com/ml-projects-kiel/OpenCampus-ApplicationofTransformers"
|
30 |
|
31 |
+
URL = "https://raw.githubusercontent.com/ml-projects-kiel/OpenCampus-ApplicationofTransformers/tree/qa/data/"
|
32 |
|
33 |
_URLs = {
|
34 |
"english": {
|
|
|
41 |
},
|
42 |
}
|
43 |
|
44 |
+
_VERSION = "0.2.0"
|
45 |
|
46 |
_LICENSE = """
|
47 |
"""
|