Dataset Viewer
Auto-converted to Parquet Duplicate
image_id
int64
2
1.71k
file_name
stringlengths
29
52
font
stringclasses
6 values
image
imagewidth (px)
1.6k
3.84k
width
int64
1.6k
3.84k
height
int64
2.26k
5.43k
annotation_set
stringclasses
1 value
objects
dict
2
lg-94161796-aug-gonville--page-3.png
gonville
1,960
2,772
deepscores
{ "area": [ 13056, 43, 49, 44, 50, 44, 50, 83, 180, 135, 180, 36, 33, 67, 72, 61, 14610, 33, 13268, 12235, 90, 275, 274, 284, 126, 103, 91, 106, 272, 98, 80, 279, 276, 275, 275, ...
3
lg-139957803-aug-emmentaler--page-5.png
emmentaler
1,960
2,772
deepscores
{ "area": [ 13994, 137, 102, 116, 116, 118, 119, 121, 14903, 13686, 11836, 100, 13831, 15460, 13708, 106, 281, 225, 281, 226, 227, 82, 124, 225, 82, 226, 277, 103, 91, 128, 302, 285, 118...
4
lg-63506682-aug-emmentaler--page-6.png
emmentaler
1,960
2,772
deepscores
{ "area": [ 11995, 12904, 51, 47, 47, 47, 47, 94, 47, 35, 38, 35, 38, 47, 51, 97, 35, 116, 64, 120, 47, 90, 120, 92, 90, 120, 47, 90, 120, 98, 93, 124, 47, 87, 116, 92, 9...
7
lg-102548668-aug-gonville--page-4.png
gonville
1,960
2,772
deepscores
{ "area": [ 15570, 13960, 33, 68, 68, 11725, 33, 50, 44, 27, 108, 12921, 110, 118, 260, 271, 275, 275, 1579, 1640, 32, 216, 33, 155, 44, 281, 279, 80, 276, 203, 279, 76, 128, 281, ...
8
lg-233786100286899765-aug-gutenberg1939--page-2.png
gutenberg1939
2,970
4,201
deepscores
{ "area": [ 92, 92, 91, 90, 184, 182, 92, 80, 26, 64, 27, 30, 84, 31, 62, 31, 30, 24689, 79, 132, 99, 132, 132, 79, 80, 132, 99, 132, 132, 78, 162, 188, 144, 192, 192, 162, ...
9
lg-26406557-aug-lilyjazz--page-1.png
lilyjazz
1,960
2,772
deepscores
{"area":[12607.0,10086.0,90.0,48.0,99.0,89.0,93.0,52.0,93.0,84.0,90.0,53.0,13060.0,36.0,14115.0,1168(...TRUNCATED)
10
lg-695667819306673755-aug-lilyjazz-.png
unknown
1,960
2,772
deepscores
{"area":[15450.0,63.0,93.0,39.0,79.0,66.0,99.0,398.0,228.0,71.0,110.0,231.0,101.0,272.0,110.0,229.0,(...TRUNCATED)
11
lg-156284447442202986-aug-gutenberg1939--page-9.png
gutenberg1939
1,960
2,772
deepscores
{"area":[13227.0,11377.0,15049.0,15650.0,14002.0,96.0,96.0,121.0,13099.0,25.0,30.0,11382.0,12113.0,1(...TRUNCATED)
12
lg-101766503886095953-aug-gonville--page-4.png
gonville
1,960
2,772
deepscores
{"area":[14942.0,12871.0,12157.0,11649.0,154.0,158.0,150.0,182.0,274.0,148.0,93.0,104.0,275.0,276.0,(...TRUNCATED)
13
lg-69678954220027474-aug-beethoven--page-176.png
beethoven
1,960
2,772
deepscores
{"area":[94.0,87.0,84.0,86.0,85.0,86.0,90.0,90.0,81.0,83.0,84.0,86.0,85.0,86.0,86.0,81.0,86.0,81.0,8(...TRUNCATED)
End of preview. Expand in Data Studio

DeepScoresV2 — Dense Subset

A HuggingFace-formatted mirror of the dense subset of the DeepScoresV2 dataset for music object detection.

Dataset description

DeepScoresV2 is a large-scale dataset of synthetically rendered music score pages annotated with bounding boxes for musical symbols. The dense subset contains 1,714 images selected by the authors as the most diverse and representative sample from the full 803k-image dataset.

Each image is a full score page rendered from MuseScore. Annotations follow COCO format: bbox is [x, y, width, height] in pixel coordinates.

Format

{
    "image_id":  int,
    "file_name": str,
    "image":     PIL.Image,     # full score page
    "width":     int,
    "height":    int,
    "objects": {
        "id":          List[int],
        "bbox":        List[List[float]],  # [x, y, w, h], COCO format
        "category_id": List[int],
        "category":    List[str],          # symbol class name
        "area":        List[float],
        "iscrowd":     List[int],
    },
}

Usage

from datasets import load_dataset

ds = load_dataset("zzsi/deep-scores-v2-dense")
example = ds["train"][0]
print(example["objects"]["category"][:5])
example["image"].show()

License

Creative Commons Attribution 4.0 International (CC BY 4.0)

Attribution

This dataset is a reformatted mirror of DeepScoresV2. Please cite the original work:

@inproceedings{DeepScoresV2,
  title     = {DeepScoresV2: A Dataset for Music Object Detection with a Challenging Test Set},
  author    = {Tuggener, Lukas and Satyawan, Yvan Putra and Pacha, Alexander
               and Schmidhuber, J{\"u}rgen and Stadelmann, Thilo},
  booktitle = {British Machine Vision Conference (BMVC)},
  year      = {2021}
}

Original dataset: https://zenodo.org/records/4012193 Original authors: Lukas Tuggener, Yvan Putra Satyawan, Alexander Pacha, Jürgen Schmidhuber, Thilo Stadelmann (ZHAW / IDSIA)

Downloads last month
116