Update README.md
Browse files
README.md
CHANGED
@@ -14,21 +14,6 @@ size_categories:
|
|
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
|
@@ -82,14 +67,6 @@ dataset_info:
|
|
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
|
@@ -122,4 +99,49 @@ configs:
|
|
122 |
path: MASSIVE/test-*.parquet
|
123 |
- split: validation
|
124 |
path: MASSIVE/validation-*.parquet
|
125 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
- 10K<n<100K
|
15 |
- 100K<n<1M
|
16 |
dataset_info:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
- config_name: banking77
|
18 |
features:
|
19 |
- name: text
|
|
|
67 |
- name: validation
|
68 |
num_examples: 2033
|
69 |
configs:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
- config_name: banking77
|
71 |
data_files:
|
72 |
- split: train
|
|
|
99 |
path: MASSIVE/test-*.parquet
|
100 |
- split: validation
|
101 |
path: MASSIVE/validation-*.parquet
|
102 |
+
---
|
103 |
+
|
104 |
+
|
105 |
+
# Data Preprocessing AutoML Benchmarks
|
106 |
+
|
107 |
+
This repository contains text classification datasets with known data quality issues for preprocessing research in AutoML.
|
108 |
+
|
109 |
+
## Usage
|
110 |
+
|
111 |
+
Load a specific dataset configuration like this:
|
112 |
+
|
113 |
+
```python
|
114 |
+
from datasets import load_dataset
|
115 |
+
|
116 |
+
# Example for loading the TREC dataset
|
117 |
+
dataset = load_dataset("MothMalone/data-preprocessing-automl-benchmarks", "trec")
|
118 |
+
```
|
119 |
+
|
120 |
+
## Available Datasets
|
121 |
+
|
122 |
+
Below are the details for each dataset configuration available in this repository.
|
123 |
+
|
124 |
+
### twenty_newsgroups
|
125 |
+
- Description: The 20 Newsgroups dataset is a collection of approximately 20,000 newsgroup documents, partitioned across 20 different newsgroups.
|
126 |
+
- Data Quality Issue: N/A
|
127 |
+
- Classes: 20
|
128 |
+
|
129 |
+
### banking77
|
130 |
+
- Description: Dataset of online banking queries annotated with their corresponding intents.
|
131 |
+
- Data Quality Issue: N/A
|
132 |
+
- Classes: 77
|
133 |
+
|
134 |
+
### trec
|
135 |
+
- Description: The Text REtrieval Conference (TREC) Question Classification dataset contains 5500 labeled questions in training set and another 500 for test set.
|
136 |
+
- Data Quality Issue: N/A
|
137 |
+
- Classes: 6
|
138 |
+
|
139 |
+
### financial_phrasebank
|
140 |
+
- Description: Financial sentiment analysis dataset with phrases from financial news.
|
141 |
+
- Data Quality Issue: N/A
|
142 |
+
- Classes: 3
|
143 |
+
|
144 |
+
### MASSIVE
|
145 |
+
- Description: Multilingual Amazon Slurp Synthetic Intent and Voice Evaluation dataset.
|
146 |
+
- Data Quality Issue: N/A
|
147 |
+
- Classes: 60
|