Dataset Viewer
Auto-converted to Parquet Duplicate
image_id
int64
2
255k
file_name
stringlengths
27
53
font
stringclasses
6 values
image
imagewidth (px)
1.02k
6.13k
width
int64
1.02k
6.13k
height
int64
1.44k
8.67k
annotation_set
stringclasses
1 value
objects
dict
2
lg-543257647305475037-aug-beethoven--page-15.png
beethoven
1,960
2,772
deepscores
{ "area": [ 15947, 12552, 14055, 112, 125, 105, 281, 286, 288, 404, 81, 192, 143, 283, 283, 283, 80, 69, 108, 1206, 444, 112, 57, 276, 120, 124, 85, 289, 290, 292, 230, 172, 1773, 17...
3
lg-211670557-aug-lilyjazz--page-2.png
lilyjazz
1,960
2,772
deepscores
{ "area": [ 74, 68, 74, 74, 73, 67, 68, 73, 74, 72, 15134, 12208, 37, 36, 36, 36, 93, 93, 93, 93, 93, 52, 93, 93, 93, 93, 93, 124, 93, 52, 93, 93, 93, 93, 93, 53, 90, ...
4
lg-178450338-aug-beethoven--page-20.png
beethoven
1,960
2,772
deepscores
{ "area": [ 44, 10907, 10581, 15769, 36, 33, 37, 36, 36, 36, 35, 14577, 2739, 3321, 3445, 1664, 44, 48, 13898, 33, 73, 96, 96, 10779, 13116, 15625, 15698, 65, 37, 43, 14383, 11385, 13018...
5
lg-117991516-aug-beethoven--page-1.png
beethoven
1,960
2,772
deepscores
{ "area": [ 10473, 14254, 43, 93, 44, 94, 88, 44, 49, 43, 108, 103, 211, 181, 31, 282, 286, 32, 1005, 32, 281, 203, 78, 282, 105, 112, 285, 214, 275, 275, 33, 144, 280, 202, 112,...
6
lg-214197992-aug-gonville--page-1025.png
gonville
2,161
3,056
deepscores
{ "area": [ 12429, 1391, 274, 894, 13463, 33, 33, 397, 1386 ], "bbox": [ [ 257, 116, 1797, 66 ], [ 271, 95, 40, 112 ], [ 340, 134, 26, 30 ], [ 1084, 109, 32, ...
8
lg-1100321-aug-lilyjazz--page-23.png
lilyjazz
1,960
2,772
deepscores
{ "area": [ 17392, 13545, 52, 70, 52, 50, 37, 45, 34, 11850, 53, 73, 266, 270, 271, 261, 261, 260, 210, 413, 264, 237, 125, 329, 266, 262, 408, 402, 409, 269, 270, 262, 263, 98, ...
9
lg-112127305-aug-emmentaler--page-4.png
emmentaler
1,960
2,772
deepscores
{ "area": [ 11345, 32, 124, 35, 120, 93, 94, 94, 90, 11552, 288, 170, 434, 290, 304, 294, 135, 287, 287, 290, 165, 134, 285, 287, 294, 258, 286, 290, 286, 274, 261, 302, 250, 291, ...
10
lg-214197992-aug-gutenberg1939--page-1089.png
gutenberg1939
2,161
3,056
deepscores
{ "area": [ 800, 492, 364, 1368, 365, 319, 1079, 1145, 1076, 362, 800, 1072, 362, 1144, 1080, 361, 915, 1080, 354, 1145, 1073, 362, 800, 1069, 361, 1145, 1079, 361, 915, 1077, 354, 1145, ...
11
lg-133613269-aug-gonville--page-1.png
gonville
1,960
2,772
deepscores
{ "area": [ 3213, 12791, 12855, 11186, 12902, 11181, 12819, 3213, 3213, 3213, 12841, 12815, 14435, 14424, 12872, 44, 44, 87, 116, 44, 87, 116, 50, 68, 116, 44, 33, 116, 33, 116, 90, 90, ...
12
lg-303304076141477683-aug-gutenberg1939--page-1.png
gutenberg1939
1,976
2,794
deepscores
{ "area": [ 12068, 13240, 15025, 13578, 279, 280, 86, 176, 94, 180, 87, 171, 87, 174, 87, 180, 86, 172, 286, 288, 102, 104, 104, 185, 93, 176, 284, 285, 291, 108, 158, 104, 102, 97, ...
End of preview. Expand in Data Studio

DeepScoresV2 — Complete

A HuggingFace-formatted mirror of the complete version 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 complete version contains 255,385 images with 151 million annotated instances across 135 symbol classes.

Each image is a full score page rendered from MuseScore across 5 music fonts (beethoven, emmentaler, gonville, gutenberg1939, lilyjazz). Annotations use COCO format: bbox is [x, y, width, height] in pixel coordinates.

Format

{
    "image_id":       int,
    "file_name":      str,
    "font":           str,           # music font used to render
    "image":          PIL.Image,
    "width":          int,
    "height":         int,
    "annotation_set": str,           # "deepscores" or "muscima++"
    "objects": {
        "id":          List[int],
        "bbox":        List[List[float]],  # [x, y, w, h], COCO format
        "category_id": List[int],
        "category":    List[str],
        "area":        List[float],
    },
}

Usage

from datasets import load_dataset

ds = load_dataset("zzsi/deep-scores-v2")
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
565