sloane-index-cards / README.md
davanstrien's picture
davanstrien HF Staff
Update README.md
4896c2f verified
metadata
task_categories:
  - image-to-text
language:
  - en
tags:
  - ocr
  - handwriting-recognition
  - historical-documents
  - library-science
  - index-cards
size_categories:
  - n<1K

Sloane Manuscript Index Cards Dataset

Dataset Description

This dataset contains digitized index cards from the British Library's Sloane Manuscript collection. The cards represent a catalog system used to index the Sloane manuscripts, one of the founding collections of the British Museum (now British Library).

Dataset Sources

  • Repository: British Library Digital Collections
  • Original Dataset: Sloane Catalogues Dataset
  • License: CC Public Domain Mark 1.0

Dataset Structure

The dataset contains index cards from multiple collections (c_1 through c_8 and d). The cards are primarily handwritten historical catalog entries, with some collections containing typewritten divider pages or forms.

Data Fields

  • image: The index card image
  • filename: Original filename
  • collection: Source collection identifier (e.g., sloane_ms_3972_c!2_jpegs)
  • page_number: Page number extracted from filename
  • source: Source attribution

Content Types

The cards contain various types of catalog information including:

  • Author names and biographical information
  • Manuscript titles and descriptions
  • Shelfmarks and reference numbers
  • Cross-references to other manuscripts
  • Historical notes and annotations

Use Cases

This dataset is ideal for:

  • Testing OCR and handwriting recognition models on historical documents
  • Evaluating Vision-Language Models (VLMs) on catalog cards
  • Training models for library catalog digitization
  • Information extraction from semi-structured historical documents
  • Benchmarking on challenging handwritten text from multiple time periods

Example Usage

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("davanstrien/sloane-index-cards")

# Filter by collection
c2_cards = dataset.filter(lambda x: 'c_2' in x['collection'])

# Access an image
sample = dataset[0]
image = sample['image']  # PIL Image

Citation

If you use this dataset, please cite:

@dataset{sloane_index_cards_2024,
  title={Sloane Manuscript Index Cards Dataset},
  author={British Library},
  year={2024},
  publisher={Hugging Face},
  note={Derived from British Library Digital Collections}
}

Acknowledgments

Thanks to the British Library for making these historical materials available under an open license. This dataset was created as part of research into AI applications for GLAM (Galleries, Libraries, Archives, and Museums) institutions.