Skip to content

Releases: DCMLab/ABC

Correct form of composer's name in metadata.

26 Jan 13:28
Compare
Choose a tag to compare

No other metadata fields were corrected.

Full extraction with ms3 v2.4.1, including `chords` facet; added pre-commit hook (workflow v4.3)

05 Dec 23:32
Compare
Choose a tag to compare

Added chords facet

Not to be confounded with labels or chord annotations, a chord is a notational unit in which all included notes are part of the same notational layer and have the same onset and duration. Every chord has a chord_id and every note is part of a chord. These tables are used to convey score information that is not attached to a particular note, such as lyrics, staff text, dynamics and other markup. More information on the columns can be found in the documentation of the ms3 parser.

Added pre-commit hook

The new iteration of the DCML annotation workflow moves the automatic validation of scores and annotations from GitHub actions to the local user. Whenever you are planning to commit changes to the annotation labels, you may want to install the pre-commit package to then run pre-commit install in your local clone. From this moment on, each time you try to commit changes to one or several MuseScore files, the hook will run ms3 review on them and will reject the commit if warnings are detected. If no warnings are detected, the commit will be enriched with all updates to the repo's TSV files that reflect the changes you've made to the scores.

ABC v2.2: Re-extracts all files using `ms3 v2.2.1`

07 Sep 15:34
f52a935
Compare
Choose a tag to compare

Changes to the TSV facets

Updated filenames

The TSV files have been renamed and now come with a suffix specifying the data facet that they represent. The three facets are

  • measures
  • notes
  • harmonies

so, for example, the file measures/n01op18-1_01.tsv has been renamed to measures/n01op18-1_01.measures.tsv.

Added resource descriptors

Each TSV file is now accompanied with a JSON resource descriptor following the frictionless specification for Tabular Data Resources. They can and have be used to validate the tabular data.

These files have the same names as the TSV files they describe but replacing the .tsv extension with .resource.json. For example, the file measures/n01op18-1_01.tsv has the corresponding descriptor measures/n01op18-1_01.resource.json.

These metadata files replace the previous csv-metadata.json files (which followed the CSVW standard) that had described the data inadequately.

Added column quarterbeats_all_endings

The quarterbeats column (also known as qstamp) that had already been available does not provide values for first or third endings, expressing the dimensions of a singular playthrough without taking into account any repeats. The newly added column quarterbeats_all_endings does not have any empty values, providing continuous positions as if each measure followed the previous one.

Renamed index column

The first column of metadata.tsv was renamed from fname to piece.

Changes to the reviewed folder

The _reviewed.mscx files compare the current set of annotation labels against those from the previous version (v2.1). They are identical, so no differences are displayed.

Wherever the MuseScore parser throws one or several warnings (e.g. because an annotation label does not match the score very well), these warnings appear in a .warnings file. For example, the warnings for n01op18-1_01 can be seen in reviewed/n01op18-1_01.warnings. One goal for future versions of this dataset would be to reduce the number of warnings to the point of addressing all of them.

Frictionless datapackage

This release is the first one that has a frictionless datapackage attached (below). It consists of

  • abc.zip, a ZIP file containing one TSV file per facet, that corresponds to a concatenation of the TSV files in the respective folder, that is
    • abc.expanded.tsv
    • abc.measures.tsv
    • abc.metadata.tsv (concatenation of a single file)
    • abc.notes.tsv
  • abc.datapackage.json, the package descriptor.

If one has the frictionless framework installed, one can use the descriptor to validate the package using the command

frictionless validate abc.datapackage.json

image

Annotated Beethoven Corpus (ABC) 2.1

02 Jan 22:59
Compare
Choose a tag to compare

Update v2.1: This release is identical to 2.0 with the difference that the .zenodo.json file (that had been generated by Zenodo!) has been freed from the key related_identifiers which made the Zenodo validator fail.

4.5 years after its first publication (see below), this is the first revised version of the ABC.
In the meantime, the DCML corpus initiative has advanced
and this update has as a main goal to harmonize the ABC with all other annotated corpora that have been and
will be published. This includes the following changes:

Upgrade to MuseScore 3

  • All scores have been converted to MuseScore 3.6.2 format and can be found in the folder MS3.
  • The harmony labels have been moved to MuseScore's "Roman Numeral Analysis" layer of the left-hand staff.

New folder and file structure

  • The code folder was removed since the old Julia code has been replaced by the Python library ms3.
  • The MuseScore files are contained in MS3 and for each movement there are a couple of other files available, identified by their file names:
    • The folder notes contains one TSV file per movement with all note heads (not every note head represents an onset).
    • The folder measures contains one TSV file per movement with all measure-like units
    • The folder harmonies contains one TSV file per movement with all harmony annotation labels
    • The folder reviewed contains two files per movement:
      • A copy of the score where all out-of-label notes have been colored in red; additionally, modified labels ( w.r.t. v1.0) are shown in these files in a diff-like manner (removed in red, added in green).
      • A copy of the harmonies TSV with six added columns that reflect the coloring of out-of-label notes ("coloring reports")
    • The file warnings.log lists those labels where over 60 % of notes within the label's segment are not expressed
      by the label. Potentially, most of them are semantically incorrect.

The folders are automatically kept up to date by the dcml_corpus_workflow
which calls the command ms3 review -M -N -X -D on every change.

Information on what the columns in the TSV files contain can be found in the documentation for ms3.

Changes to the data

A full diff of all changes applied with version 2.0 can be seen here.

  • The scores have been aligned by tunescribers.com with the Henle and Breitkopf editions
    provided in the pdf folder and indicated in its README.
  • Systematic changes to the harmony labels:
    • With the harmony labels moved to the Roman Numeral Analysis layer, no initial . are needed anymore.
    • V9 is not part of the DCML harmony annotation standard and has been replaced by V7(9) or V7(+9).
    • Corrected vii chords in major keys that had often been wrongly labeled as #vii.
  • Obvious errors have been corrected in many places. Thanks to @craigsapp, @lancioni, @malcolmsailor, @MarkGotham, @napulen and @tymoczko
    for reporting quite a few of them!

Annotated Beethoven Corpus (ABC) 2.0

15 Dec 17:53
8c8050c
Compare
Choose a tag to compare

4.5 years after its first publication (see below), this is the first revised version of the ABC.
In the meantime, the DCML corpus initiative has advanced
and this update has as a main goal to harmonize the ABC with all other annotated corpora that have been and
will be published. This includes the following changes:

Upgrade to MuseScore 3

  • All scores have been converted to MuseScore 3.6.2 format and can be found in the folder MS3.
  • The harmony labels have been moved to MuseScore's "Roman Numeral Analysis" layer of the left-hand staff.

New folder and file structure

  • The code folder was removed since the old Julia code has been replaced by the Python library ms3.
  • The MuseScore files are contained in MS3 and for each movement there are a couple of other files available, identified by their file names:
    • The folder notes contains one TSV file per movement with all note heads (not every note head represents an onset).
    • The folder measures contains one TSV file per movement with all measure-like units
    • The folder harmonies contains one TSV file per movement with all harmony annotation labels
    • The folder reviewed contains two files per movement:
      • A copy of the score where all out-of-label notes have been colored in red; additionally, modified labels ( w.r.t. v1.0) are shown in these files in a diff-like manner (removed in red, added in green).
      • A copy of the harmonies TSV with six added columns that reflect the coloring of out-of-label notes ("coloring reports")
    • The file warnings.log lists those labels where over 60 % of notes within the label's segment are not expressed
      by the label. Potentially, most of them are semantically incorrect.

The folders are automatically kept up to date by the dcml_corpus_workflow
which calls the command ms3 review -M -N -X -D on every change.

Information on what the columns in the TSV files contain can be found in the documentation for ms3.

Changes to the data

A full diff of all changes applied with version 2.0 can be seen here.

  • The scores have been aligned by tunescribers.com with the Henle and Breitkopf editions
    provided in the pdf folder and indicated in its README.
  • Systematic changes to the harmony labels:
    • With the harmony labels moved to the Roman Numeral Analysis layer, no initial . are needed anymore.
    • V9 is not part of the DCML harmony annotation standard and has been replaced by V7(9) or V7(+9).
    • Corrected vii chords in major keys that had often been wrongly labeled as #vii.
  • Obvious errors have been corrected in many places. Thanks to @craigsapp, @lancioni, @malcolmsailor, @MarkGotham, @napulen and @tymoczko
    for reporting quite a few of them!

Annotated Beethoven Corpus Version 1.0

29 Jun 09:18
Compare
Choose a tag to compare