Datasets:
File size: 893 Bytes
383ff37 ded984d a4e098e ded984d 383ff37 a4e098e ded984d a4e098e 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: Chess Rock VS Pawn
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
---
# Chess Rock VS Pawn
The [Chess Rock VS Pawn dataset](https://archive-beta.ics.uci.edu/dataset/22/chess+king+rook+vs+king+pawn) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
# 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")["train"]
```
|