Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

OMR Monophonic Consolidated

Paired monophonic sheet-music images and PrIMuS semantic ground-truth strings used to fine-tune NathanZ721/omr-monophonic.

Contents

Download consolidated.zip. After extraction:

consolidated/
  images/
  ground_truth/

Filenames are {group}__{id}.{ext} with matching .semantic siblings.

Groups (~139k pairs)

Group Approx. count Description
primus 36,951 Clean digital PrIMuS renders
camera_primus 36,951 Camera-style distorted PrIMuS
mashcima 36,584 Handwritten Mashcima synthesis
corrupt_clean 9,806 Corrupted clean digital
corrupt_camera 9,734 Corrupted camera-distorted
corrupt_handwritten 9,456 Corrupted handwritten

Related model

Load

from huggingface_hub import hf_hub_download
import zipfile
from pathlib import Path

zip_path = hf_hub_download(
    repo_id="NathanZ721/omr-monophonic-consolidated",
    filename="consolidated.zip",
    repo_type="dataset",
)
out = Path("/content/omr_data")
out.mkdir(parents=True, exist_ok=True)
with zipfile.ZipFile(zip_path, "r") as zf:
    zf.extractall(out)
Downloads last month
4