REload Readme
Browse files
README.md
CHANGED
@@ -1,187 +1,125 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
task_categories:
|
4 |
-
- text-classification
|
5 |
language:
|
6 |
-
- en
|
7 |
tags:
|
8 |
-
- data-preprocessing
|
9 |
-
- automl
|
10 |
-
- benchmarks
|
11 |
size_categories:
|
12 |
-
- n<1K
|
13 |
-
- 1K<n<10K
|
14 |
-
- 10K<n<100K
|
15 |
-
- 100K<n<1M
|
16 |
dataset_info:
|
17 |
-
- config_name: twenty_newsgroups
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
- config_name: banking77
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
- config_name: trec
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
- config_name: financial_phrasebank
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
- config_name: MASSIVE
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
configs:
|
85 |
-
- config_name: twenty_newsgroups
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
- config_name: banking77
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
- config_name: trec
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
- config_name: financial_phrasebank
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
- config_name: MASSIVE
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
---
|
126 |
-
|
127 |
-
# Data Preprocessing AutoML Benchmarks
|
128 |
-
|
129 |
-
This repository contains text classification datasets with known data quality issues for preprocessing research in AutoML.
|
130 |
-
|
131 |
-
## Usage
|
132 |
-
|
133 |
-
Load a specific dataset configuration like this:
|
134 |
-
|
135 |
-
```python
|
136 |
-
from datasets import load_dataset
|
137 |
-
|
138 |
-
# Example for loading the TREC dataset
|
139 |
-
dataset = load_dataset("MothMalone/data-preprocessing-automl-benchmarks", "trec")
|
140 |
-
|
141 |
-
# Example for loading the twenty_newsgroups dataset
|
142 |
-
dataset = load_dataset("MothMalone/data-preprocessing-automl-benchmarks", "twenty_newsgroups")
|
143 |
-
```
|
144 |
-
|
145 |
-
## Available Datasets
|
146 |
-
|
147 |
-
Below are the details for each dataset configuration available in this repository.
|
148 |
-
|
149 |
-
### twenty_newsgroups
|
150 |
-
- Description: The 20 Newsgroups dataset is a collection of approximately 20,000 newsgroup documents, partitioned across 20 different newsgroups.
|
151 |
-
- Data Quality Issue: N/A
|
152 |
-
- Classes: 20
|
153 |
-
- Training Samples: 8485
|
154 |
-
- Validation Samples: 2829
|
155 |
-
- Test Samples: 7532
|
156 |
-
|
157 |
-
### banking77
|
158 |
-
- Description: Dataset of online banking queries annotated with their corresponding intents.
|
159 |
-
- Data Quality Issue: N/A
|
160 |
-
- Classes: 77
|
161 |
-
- Training Samples: 7502
|
162 |
-
- Validation Samples: 2501
|
163 |
-
- Test Samples: 3080
|
164 |
-
|
165 |
-
### trec
|
166 |
-
- Description: The Text REtrieval Conference (TREC) Question Classification dataset contains 5500 labeled questions in training set and another 500 for test set.
|
167 |
-
- Data Quality Issue: N/A
|
168 |
-
- Classes: 6
|
169 |
-
- Training Samples: 4089
|
170 |
-
- Validation Samples: 1363
|
171 |
-
- Test Samples: 500
|
172 |
-
|
173 |
-
### financial_phrasebank
|
174 |
-
- Description: Financial sentiment analysis dataset with phrases from financial news.
|
175 |
-
- Data Quality Issue: N/A
|
176 |
-
- Classes: 3
|
177 |
-
- Training Samples: 1698
|
178 |
-
- Validation Samples: 566
|
179 |
-
- Test Samples: 0
|
180 |
-
|
181 |
-
### MASSIVE
|
182 |
-
- Description: Multilingual Amazon Slurp Synthetic Intent and Voice Evaluation dataset.
|
183 |
-
- Data Quality Issue: N/A
|
184 |
-
- Classes: 60
|
185 |
-
- Training Samples: 11514
|
186 |
-
- Validation Samples: 2033
|
187 |
-
- Test Samples: 2974
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
task_categories:
|
4 |
+
- text-classification
|
5 |
language:
|
6 |
+
- en
|
7 |
tags:
|
8 |
+
- data-preprocessing
|
9 |
+
- automl
|
10 |
+
- benchmarks
|
11 |
size_categories:
|
12 |
+
- n<1K
|
13 |
+
- 1K<n<10K
|
14 |
+
- 10K<n<100K
|
15 |
+
- 100K<n<1M
|
16 |
dataset_info:
|
17 |
+
- config_name: twenty_newsgroups
|
18 |
+
features:
|
19 |
+
- name: text
|
20 |
+
dtype: string
|
21 |
+
- name: label
|
22 |
+
dtype: int64
|
23 |
+
- name: label_text
|
24 |
+
dtype: string
|
25 |
+
splits:
|
26 |
+
- name: train
|
27 |
+
num_examples: 8586
|
28 |
+
- name: test
|
29 |
+
num_examples: 7532
|
30 |
+
- name: validation
|
31 |
+
num_examples: 2828
|
32 |
+
- config_name: banking77
|
33 |
+
features:
|
34 |
+
- name: text
|
35 |
+
dtype: string
|
36 |
+
- name: label
|
37 |
+
dtype: int64
|
38 |
+
splits:
|
39 |
+
- name: train
|
40 |
+
num_examples: 7502
|
41 |
+
- name: test
|
42 |
+
num_examples: 3080
|
43 |
+
- name: validation
|
44 |
+
num_examples: 2501
|
45 |
+
- config_name: trec
|
46 |
+
features:
|
47 |
+
- name: text
|
48 |
+
dtype: string
|
49 |
+
- name: label
|
50 |
+
dtype: int64
|
51 |
+
splits:
|
52 |
+
- name: train
|
53 |
+
num_examples: 4089
|
54 |
+
- name: test
|
55 |
+
num_examples: 500
|
56 |
+
- name: validation
|
57 |
+
num_examples: 1363
|
58 |
+
- config_name: financial_phrasebank
|
59 |
+
features:
|
60 |
+
- name: text
|
61 |
+
dtype: string
|
62 |
+
- name: label
|
63 |
+
dtype: int64
|
64 |
+
splits:
|
65 |
+
- name: train
|
66 |
+
num_examples: 1698
|
67 |
+
- name: test
|
68 |
+
num_examples: 0
|
69 |
+
- name: validation
|
70 |
+
num_examples: 566
|
71 |
+
- config_name: MASSIVE
|
72 |
+
features:
|
73 |
+
- name: text
|
74 |
+
dtype: string
|
75 |
+
- name: label
|
76 |
+
dtype: int64
|
77 |
+
splits:
|
78 |
+
- name: train
|
79 |
+
num_examples: 11514
|
80 |
+
- name: test
|
81 |
+
num_examples: 2974
|
82 |
+
- name: validation
|
83 |
+
num_examples: 2033
|
84 |
configs:
|
85 |
+
- config_name: twenty_newsgroups
|
86 |
+
data_files:
|
87 |
+
- split: train
|
88 |
+
path: twenty_newsgroups/train.csv
|
89 |
+
- split: test
|
90 |
+
path: twenty_newsgroups/test.csv
|
91 |
+
- split: validation
|
92 |
+
path: twenty_newsgroups/validation.csv
|
93 |
+
- config_name: banking77
|
94 |
+
data_files:
|
95 |
+
- split: train
|
96 |
+
path: banking77/train-*.parquet
|
97 |
+
- split: test
|
98 |
+
path: banking77/test-*.parquet
|
99 |
+
- split: validation
|
100 |
+
path: banking77/validation-*.parquet
|
101 |
+
- config_name: trec
|
102 |
+
data_files:
|
103 |
+
- split: train
|
104 |
+
path: trec/train-*.parquet
|
105 |
+
- split: test
|
106 |
+
path: trec/test-*.parquet
|
107 |
+
- split: validation
|
108 |
+
path: trec/validation-*.parquet
|
109 |
+
- config_name: financial_phrasebank
|
110 |
+
data_files:
|
111 |
+
- split: train
|
112 |
+
path: financial_phrasebank/train-*.parquet
|
113 |
+
- split: test
|
114 |
+
path: financial_phrasebank/test-*.parquet
|
115 |
+
- split: validation
|
116 |
+
path: financial_phrasebank/validation-*.parquet
|
117 |
+
- config_name: MASSIVE
|
118 |
+
data_files:
|
119 |
+
- split: train
|
120 |
+
path: MASSIVE/train-*.parquet
|
121 |
+
- split: test
|
122 |
+
path: MASSIVE/test-*.parquet
|
123 |
+
- split: validation
|
124 |
+
path: MASSIVE/validation-*.parquet
|
125 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|