Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

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

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)
Downloads last month
170