chess_rock_vs_pawn / README.md
mstz's picture
Upload 4 files
ded984d
|
raw
history blame
925 Bytes
---
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"]
```