merve HF staff commited on
Commit
6e48f4f
·
1 Parent(s): 9f9471d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +195 -0
README.md ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ annotations_creators: []
4
+ license: []
5
+ pretty_name: tabular_benchmark
6
+ tags: []
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ dataset_info:
11
+ splits:
12
+ - name: reg_num
13
+ - name: reg_cat
14
+ - name: clf_num
15
+ - name: clf_cat
16
+ ---
17
+
18
+ # Dataset Card for Tabular Benchmark
19
+
20
+ ## Dataset Description
21
+
22
+ - **Repository:** https://github.com/LeoGrin/tabular-benchmark/community
23
+ - **Paper:** https://hal.archives-ouvertes.fr/hal-03723551v2/document
24
+
25
+ ### Dataset Summary
26
+
27
+ Benchmark made of curation of various tabular data learning tasks, including:
28
+ - Regression from Numerical and Categorical Features
29
+ - Regression from Numerical Features
30
+ - Classification from Numerical and Categorical Features
31
+ - Classification from Numerical Features
32
+
33
+ ### Supported Tasks and Leaderboards
34
+
35
+ - `tabular-regression`
36
+ - `tabular-classification`
37
+
38
+ ## Dataset Structure
39
+
40
+ ### Data Splits
41
+
42
+ This dataset consists of four splits (folders) based on tasks and datasets included in tasks.
43
+
44
+ - reg_num: Task identifier for regression on numerical features.
45
+ - reg_cat: Task identifier for regression on numerical and categorical features.
46
+ - clf_num: Task identifier for classification on numerical features.
47
+ - clf_cat: Task identifier for classification on categorical features.
48
+
49
+ Depending on the dataset you want to load, you can load the dataset by passing `task_name/dataset_name` to `data_file` argument of `load_dataset` like below:
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+ dataset = load_dataset("inria_soda/tabular-benchmark", data_file="reg_cat/house_sales.csv")
54
+ ```
55
+
56
+
57
+
58
+
59
+ ## Dataset Creation
60
+
61
+ ### Curation Rationale
62
+
63
+ - Heterogeneous columns. Columns should correspond to features of different nature. This excludes
64
+ images or signal datasets where each column corresponds to the same signal on different sensors.
65
+ - Not high dimensional. We only keep datasets with a d/n ratio below 1/10.
66
+ - Undocumented datasets We remove datasets where too little information is available. We did keep
67
+ datasets with hidden column names if it was clear that the features were heterogeneous.
68
+ - I.I.D. data. We remove stream-like datasets or time series.
69
+ Real-world data. We remove artificial datasets but keep some simulated datasets. The difference is
70
+ subtle, but we try to keep simulated datasets if learning these datasets are of practical importance
71
+ (like the Higgs dataset), and not just a toy example to test specific model capabilities.
72
+ Not too small. We remove datasets with too few features (< 4) and too few samples (< 3 000). For
73
+ benchmarks on numerical features only, we remove categorical features before checking if enough
74
+ features and samples are remaining.
75
+ - Not too easy. We remove datasets which are too easy. Specifically, we remove a dataset if a default
76
+ Logistic Regression (or Linear Regression for regression) reach a score whose relative difference
77
+ with the score of both a default Resnet (from Gorishniy et al. [2021]) and a default HistGradientBoosting model (from scikit learn) is below 5%. Other benchmarks use different metrics to
78
+ remove too easy datasets, like removing datasets which can be learnt perfectly by a single decision
79
+ classifier [Bischl et al., 2021], but this does not account for different Bayes rate of different datasets.
80
+ As tree-based methods have been shown to be superior to Logistic Regression [Fernández-Delgado
81
+ et al., 2014] in our setting, a close score for these two types of models indicates that we might
82
+ already be close to the best achievable score.
83
+ - Not deterministic. We remove datasets where the target is a deterministic function of the data. This
84
+ mostly means removing datasets on games like poker and chess. Indeed, we believe that these
85
+ datasets are very different from most real-world tabular datasets, and should be studied separately
86
+
87
+ ### Source Data
88
+
89
+
90
+ Numerical Classification
91
+ dataset_name n_samples n_features original_link new_link
92
+ credit 16714 10 https://openml.org/d/151 https://www.openml.org/d/44089
93
+ california 20634 8 https://openml.org/d/293 https://www.openml.org/d/44090
94
+ wine 2554 11 https://openml.org/d/722 https://www.openml.org/d/44091
95
+ electricity 38474 7 https://openml.org/d/821 https://www.openml.org/d/44120
96
+ covertype 566602 10 https://openml.org/d/993 https://www.openml.org/d/44121
97
+ pol 10082 26 https://openml.org/d/1120 https://www.openml.org/d/44122
98
+ house_16H 13488 16 https://openml.org/d/1461 https://www.openml.org/d/44123
99
+ kdd_ipums_la_97-small 5188 20 https://openml.org/d/1489 https://www.openml.org/d/44124
100
+ MagicTelescope 13376 10 https://openml.org/d/41150 https://www.openml.org/d/44125
101
+ bank-marketing 10578 7 https://openml.org/d/42769 https://www.openml.org/d/44126
102
+ phoneme 3172 5 https://openml.org/d/1044 https://www.openml.org/d/44127
103
+ MiniBooNE 72998 50 https://openml.org/d/41168 https://www.openml.org/d/44128
104
+ Higgs 940160 24 https://www.kaggle.com/c/GiveMeSomeCredit/data?select=cs-training.csv https://www.openml.org/d/44129
105
+ eye_movements 7608 20 https://www.dcc.fc.up.pt/ ltorgo/Regression/cal_housing.html https://www.openml.org/d/44130
106
+ jannis 57580 54 https://archive.ics.uci.edu/ml/datasets/wine+quality https://www.openml.org/d/44131
107
+ Note that we noticed a bit late that the number of samples in the transfo
108
+
109
+ Categorical Classification
110
+ dataset_name n_samples n_features original_link new_link
111
+ electricity 38474 8 https://openml.org/d/151 https://www.openml.org/d/44156
112
+ eye_movements 7608 23 https://openml.org/d/1044 https://www.openml.org/d/44157
113
+ covertype 423680 54 https://openml.org/d/1114 https://www.openml.org/d/44159
114
+ rl 4970 12 https://openml.org/d/1596 https://www.openml.org/d/44160
115
+ road-safety 111762 32 https://openml.org/d/41160 https://www.openml.org/d/44161
116
+ compass 16644 17 https://openml.org/d/42803 https://www.openml.org/d/44162
117
+ KDDCup09_upselling 5128 49 https://www.kaggle.com/datasets/danofer/compass?select=cox-violent-parsed.csv https://www.openml.org/d/44186
118
+
119
+ Numerical Regression
120
+ dataset_name n_samples n_features original link new_link
121
+ cpu_act 8192 21 https://openml.org/d/197 https://www.openml.org/d/44132
122
+ pol 15000 26 https://openml.org/d/201 https://www.openml.org/d/44133
123
+ elevators 16599 16 https://openml.org/d/216 https://www.openml.org/d/44134
124
+ isolet 7797 613 https://openml.org/d/300 https://www.openml.org/d/44135
125
+ wine_quality 6497 11 https://openml.org/d/287 https://www.openml.org/d/44136
126
+ Ailerons 13750 33 https://openml.org/d/296 https://www.openml.org/d/44137
127
+ houses 20640 8 https://openml.org/d/537 https://www.openml.org/d/44138
128
+ house_16H 22784 16 https://openml.org/d/574 https://www.openml.org/d/44139
129
+ diamonds 53940 6 https://openml.org/d/42225 https://www.openml.org/d/44140
130
+ Brazilian_houses 10692 8 https://openml.org/d/42688 https://www.openml.org/d/44141
131
+ Bike_Sharing_Demand 17379 6 https://openml.org/d/42712 https://www.openml.org/d/44142
132
+ nyc-taxi-green-dec-2016 581835 9 https://openml.org/d/42729 https://www.openml.org/d/44143
133
+ house_sales 21613 15 https://openml.org/d/42731 https://www.openml.org/d/44144
134
+ sulfur 10081 6 https://openml.org/d/23515 https://www.openml.org/d/44145
135
+ medical_charges 163065 3 https://openml.org/d/42720 https://www.openml.org/d/44146
136
+ MiamiHousing2016 13932 13 https://openml.org/d/43093 https://www.openml.org/d/44147
137
+ superconduct 21263 79 https://openml.org/d/43174 https://www.openml.org/d/44148
138
+ california 20640 8 https://www.dcc.fc.up.pt/ ltorgo/Regression/cal_housing.html https://www.openml.org/d/44025
139
+ fifa 18063 5 https://www.kaggle.com/datasets/stefanoleone992/fifa-22-complete-player-dataset https://www.openml.org/d/44026
140
+ year 515345 90 https://archive.ics.uci.edu/ml/datasets/yearpredictionmsd https://www.openml.org/d/44027
141
+
142
+
143
+
144
+
145
+
146
+ Categorical Regression
147
+ yprop_4_1 8885 62 https://openml.org/d/416 https://www.openml.org/d/44054
148
+ analcatdata_supreme 4052 7 https://openml.org/d/504 https://www.openml.org/d/44055
149
+ visualizing_soil 8641 4 https://openml.org/d/688 https://www.openml.org/d/44056
150
+ black_friday 166821 9 https://openml.org/d/41540 https://www.openml.org/d/44057
151
+ diamonds 53940 9 https://openml.org/d/42225 https://www.openml.org/d/44059
152
+ Mercedes_Benz_Greener_Manufacturing 4209 359 https://openml.org/d/42570 https://www.openml.org/d/44061
153
+ Brazilian_houses 10692 11 https://openml.org/d/42688 https://www.openml.org/d/44062
154
+ Bike_Sharing_Demand 17379 11 https://openml.org/d/42712 https://www.openml.org/d/44063
155
+ OnlineNewsPopularity 39644 59 https://openml.org/d/42724 https://www.openml.org/d/44064
156
+ nyc-taxi-green-dec-2016 581835 16 https://openml.org/d/42729 https://www.openml.org/d/44065
157
+ house_sales 21613 17 https://openml.org/d/42731 https://www.openml.org/d/44066
158
+ particulate-matter-ukair-2017 394299 6 https://openml.org/d/42207 https://www.openml.org/d/44068
159
+ SGEMM_GPU_kernel_performance 241600 9 https://openml.org/d/43144 https://www.openml.org/d/44069
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+ #### Initial Data Collection and Normalization
168
+
169
+ [More Information Needed]
170
+
171
+ ### Annotations
172
+
173
+ #### Annotation process
174
+
175
+ [More Information Needed]
176
+
177
+ #### Who are the annotators?
178
+
179
+ [More Information Needed]
180
+
181
+ ## Additional Information
182
+
183
+ ### Dataset Curators
184
+
185
+ Léo Grinsztajn, Edouard Oyallon, Gaël Varoquaux.
186
+
187
+ ### Licensing Information
188
+
189
+ [More Information Needed]
190
+
191
+ ### Citation Information
192
+
193
+ Léo Grinsztajn, Edouard Oyallon, Gaël Varoquaux. Why do tree-based models still outperform deep
194
+ learning on typical tabular data?. NeurIPS 2022 Datasets and Benchmarks Track, Nov 2022, New
195
+ Orleans, United States. ffhal-03723551v2f