-
Notifications
You must be signed in to change notification settings - Fork 4
Addresses phrase and pedal incongruency warnings #267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
johentsch
approved these changes
Mar 9, 2025
Member
johentsch
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @BeckerHanne, I've removed the wrong label.
Member
|
https://op-musicology.epfl.ch/projects/distant-listening-corpus/work_packages/1486/activity Addresses phrase and pedal warnings for selected movements. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a README file for a data repository originating from the DCML corpus initiative
and serves as welcome page for both
For information on how to obtain and use the dataset, please refer to this documentation page.
Arcangelo Corelli – Trio Sonatas (A corpus of annotated scores)
This corpus of annotated MuseScore files has been created within
the DCML corpus initiative and employs
the DCML harmony annotation standard. It was relased together with and as part
of the "workflow paper" (for the reference see below or the file
CITATION.cff).The corpus comprises 36
Sonate a tre, divided into 149 separate movements. Together they make up forthree of the four famous cycles of 12 trio sonatas each:
Getting the data
of the TSV files in the four folders (
measures,notes,chords, andharmonies) and a JSON descriptor:git clone https://github.com/DCMLab/corelli.gitData Formats
Each piece in this corpus is represented by five files with identical name prefixes, each in its own folder.
For example, the first movement of the first trio sonata has the following files:
MS3/op01n01a.mscx: Uncompressed MuseScore 3.6.2 file including the music and annotation labels.notes/op01n01a.notes.tsv: A table of all note heads contained in the score and their relevant features (not each of them represents an onset, some are tied together)measures/op01n01a.measures.tsv: A table with relevant information about the measures in the score.chords/op01n01a.chords.tsv: A table containing layer-wise unique onset positions with the musical markup (such as dynamics, articulation, lyrics, figured bass, etc.).harmonies/op01n01a.harmonies.tsv: A table of the included harmony labels (including cadences and phrases) with their positions in the score.Each TSV file comes with its own JSON descriptor that describes the meanings and datatypes of the columns ("fields") it contains,
follows the Frictionless specification,
and can be used to validate and correctly load the described file.
Opening Scores
After navigating to your local copy, you can open the scores in the folder
MS3with the free and open source scoreeditor MuseScore. Please note that the scores have been edited, annotated and tested with
MuseScore 3.6.2.
MuseScore 4 has since been released which renders them correctly but cannot store them back in the same format.
Opening TSV files in a spreadsheet
Tab-separated value (TSV) files are like Comma-separated value (CSV) files and can be opened with most modern text
editors. However, for correctly displaying the columns, you might want to use a spreadsheet or an addon for your
favourite text editor. When you use a spreadsheet such as Excel, it might annoy you by interpreting fractions as
dates. This can be circumvented by using
Data --> From Text/CSVor the free alternativeLibreOffice Calc. Other than that, TSV data can be loaded with
every modern programming language.
Loading TSV files in Python
Since the TSV files contain null values, lists, fractions, and numbers that are to be treated as strings, you may want
to use this code to load any TSV files related to this repository (provided you're doing it in Python). After a quick
pip install -U ms3(requires Python 3.10 or later) you'll be able to load any TSV like this:Version history
See the GitHub releases.
Questions, Suggestions, Corrections, Bug Reports
Please create an issue and/or feel free to fork and submit pull requests.
Cite as
License
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0).