ivopersus commited on
Commit
5ff9c05
·
verified ·
1 Parent(s): 145eb26

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -3
README.md CHANGED
@@ -1,3 +1,84 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: UCI Tabular Benchmark Sample
6
+ task_categories:
7
+ - tabular-classification
8
+ - tabular-regression
9
+ tags:
10
+ - uci
11
+ - tabular
12
+ - classification
13
+ - binary
14
+ - multiclass
15
+ - regression
16
+ size_categories:
17
+ - 10K<n<100K
18
+ - 100K<n<1M
19
+ ---
20
+
21
+ # UCI Tabular Benchmark Sample
22
+ This repository contains a small collection of tabular datasets mirrored from the UCI Machine Learning Repository and prepared for convenient experimentation.
23
+
24
+ ## Contents
25
+ The datasets are organized by common ML task type:
26
+
27
+ ### Binary Classification
28
+ Adult dataset
29
+
30
+ Bank Marketing dataset
31
+
32
+ ### Multiclassification
33
+ Covertype dataset
34
+
35
+ Statlog (Shuttle) dataset
36
+
37
+ ### Regression
38
+ Year Prediction MSD dataset
39
+
40
+ ## Source and License
41
+
42
+ All datasets in this repository are sourced from the UCI Machine Learning Repository and are used under **Creative Commons Attribution 4.0 International (CC BY 4.0)**.
43
+
44
+ - CC BY 4.0 license text: https://creativecommons.org/licenses/by/4.0/
45
+
46
+ ### Upstream dataset pages (UCI)
47
+
48
+ - Adult (Census Income): https://archive.ics.uci.edu/dataset/2/adult
49
+ - Bank Marketing: https://archive.ics.uci.edu/dataset/222/bank+marketing
50
+ - Covertype: https://archive.ics.uci.edu/dataset/31/covertype
51
+ - Statlog (Shuttle): https://archive.ics.uci.edu/dataset/148/statlog+shuttle
52
+ - YearPredictionMSD: https://archive.ics.uci.edu/dataset/203/yearpredictionmsd
53
+
54
+ ## Modifications and Data Processing Notes
55
+ Some modifications may have been applied for usability and consistency. These modifications are intended to be non-substantive and not to change the meaning of the data.
56
+
57
+ Typical changes include:
58
+ - Adding **column headers** where the original files did not include headers.
59
+ - Converting original formats (for example space-separated or other delimiters) into **`.csv`**.
60
+ - Normalizing line endings and basic formatting fixes to improve parsing.
61
+ - In some cases, reorganizing files into a standard folder structure (for example `train.csv` and `test.csv`).
62
+
63
+ Unless explicitly stated in a dataset folder README (if present), no attempt was made to:
64
+ - Remove rows or features
65
+ - Alter feature values
66
+ - Rebalance classes
67
+ - Impute missing values
68
+
69
+ If you require a byte-for-byte identical copy of the upstream distribution, please download directly from the corresponding UCI page.
70
+
71
+ ## Missing Values
72
+
73
+ Missing values are preserved as in the upstream sources. Depending on the dataset, missingness may appear as empty fields, `?`, or other dataset-specific markers. Refer to each dataset's UCI documentation for the authoritative description.
74
+
75
+ ## Intended Use
76
+
77
+ This pack is intended for:
78
+ - Tabular model benchmarking (linear models, tree models, neural networks)
79
+ - Privacy and security research on tabular learning pipelines, including:
80
+ - reconstruction and gradient inversion attacks
81
+ - defenses such as clipping, noise injection, discretization, constraint-aware decoding
82
+ - evaluating reconstructibility using feature-level and record-level metrics
83
+
84
+ It is not intended for making decisions about individuals or for any high-stakes deployment