GerhardTrippen/chess-ocr-bilstm
Image-to-Text • Updated
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.
This is not data that I created. It originally came from the Paper Digitization of Handwritten Chess Scoresheets with a BiLSTM Network
You can also find the dataset here and here
There are 2 versions of this dataset
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.
import datasets
unprocessed_hcs = datasets.load_dataset("Benjaminkost/processed_hcs")
# Show first image
first_image = unprocessed_hcs["train"][0]["image"]
first_label = unprocessed_hcs["train"][0]["labels"]
first_image.show()
print(first_label)