File size: 925 Bytes
383ff37
ded984d
 
 
 
 
 
 
 
 
 
 
 
 
 
383ff37
ded984d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
language:
- en
tags:
- chess
- tabular_classification
- binary_classification
- multiclass_classification
pretty_name: Adult
size_categories:
- 1K<n<10K
task_categories:  # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
- tabular-classification
configs:
- chess
---
# Adult
The [Adult dataset](https://archive.ics.uci.edu/ml/datasets/Adult) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Census dataset including personal characteristic of a person, and their income threshold.

# Configurations and tasks
| **Configuration** | **Task**                  | **Description**          |
|-------------------|---------------------------|--------------------------|
| chess             | Binary classification     | Can the white piece win? |

# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/chess", "chess")["train"]
```