Datasets:
File size: 1,616 Bytes
9b0092f bc3393a 6102a58 bc3393a 9b0092f 0ff603f d5e0025 24fb7a9 691ebd3 4894f21 691ebd3 42e31a2 7307e4d 42e31a2 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
---
license: apache-2.0
task_categories:
- image-to-text
tags:
- chess
- HCS
- handwriting
- scoresheets
- forms
size_categories:
- 10K<n<100K
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype: string
splits:
- name: train
num_bytes: 517848025.198
num_examples: 13731
download_size: 642552652
dataset_size: 517848025.198
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Disclaimer
This is not data that I created. It originally came from the Paper [_Digitization of Handwritten Chess Scoresheets with a BiLSTM Network_](https://www.mdpi.com/1477430)
You can also find the dataset [here](https://sites.google.com/view/chess-scoresheet-dataset) and [here](https://tc11.cvc.uab.es/datasets/HCS_1)
# Datasets
There are 2 versions of this dataset
- processed_hcs Dataset where you are right now
- unprocessed_hcs where the whole scoresheet can be seen [here](https://huggingface.co/datasets/BenjaminKost/unprocessed_hcs)
# Desciption
The Handwritten Chess Scoresheet Datase (HCS) contains a set of single and double paged chess scoresheet images with ground truth labels.
The processed images are a list of the extracted move boxes with the corresponding labels.
The labels are strings of the chess moves shown in the move boxes.
# Usage
## In Python script
```python
import datasets
unprocessed_hcs = datasets.load_dataset("Benjaminkost/unprocessed_hcs")
# Show first image
first_image = unprocessed_hcs["train"][0]["image"]
first_label = unprocessed_hcs["train"][0]["labels"]
first_image.show()
print(first_label)
``` |