MothMalone commited on
Commit
cbcd4cc
·
verified ·
1 Parent(s): 6837f29

REload Readme

Browse files
Files changed (1) hide show
  1. README.md +117 -179
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
- 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: 2829
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
- ---
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
+ ---