| --- |
| dataset_info: |
| features: |
| - name: image |
| dtype: image |
| - name: labels |
| list: string |
| splits: |
| - name: train |
| num_bytes: 5713318528.0 |
| num_examples: 248 |
| download_size: 5704873221 |
| dataset_size: 5713318528.0 |
| configs: |
| - config_name: default |
| data_files: |
| - split: train |
| path: data/train-* |
| --- |
| |
| # Description |
| The Handwritten Standardized Chess Scoresheet Dataset (HSSSD) contains a set of single and double paged chess scoresheet images with ground truth labels. |
| The unprocessed images are a list of the scoresheets the corresponding labels. |
| The labels are a list of strings of the characters shown on the scoresheet in the order of the right to bottom order as on the scoresheet. |
|
|
| # Usage |
| ## In Python script |
| ```python |
| import datasets |
| hsssd = datasets.load_dataset("Benjaminkost/HSSSD") |
| |
| # Show first image |
| first_image = hsssd["train"][0]["image"] |
| first_label = hsssd["train"][0]["labels"] |
| |
| first_image.show() |
| print(first_label) |
| ``` |