Skip to content

Commit c569be9

Browse files
Update version number to 5.0.1 and tweak *README*.
1 parent f9e706a commit c569be9

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# musicdiff
22
A Python3 package (and command-line tool) for computing and visualizing (or describing) the notation differences between two music scores, or between two folders of music scores (for ML training runs).
33

4-
musicdiff is focused on visible notation differences, not only on audible musical differences. For example, two tied eighth notes are considered different from a single quarter note. And two beamed 16th notes are considered different from two unbeamed 16th notes. This makes musicdiff particularly useful for assessing the results of Optical Music Recognition software.
4+
musicdiff is focused on visible notation differences, not only on audible musical differences. For example, two tied eighth notes are considered different from a single quarter note. And two beamed 16th notes are considered different from two unbeamed 16th notes. This makes musicdiff particularly useful for evaluating the results of Optical Music Recognition software.
55

66
musicdiff is derived from: [music-score-diff](https://github.com/fosfrancesco/music-score-diff.git)
77
by [Francesco Foscarin](https://github.com/fosfrancesco).
@@ -57,8 +57,6 @@ Alternate usage (for ML training runs):
5757

5858
The source for that command-line tool, which calls musicdiff's high-level diff() and diff_ml_training() API, can be seen [here](musicdiff/__main__.py). You can use it as example code for adding musicdiff capabilities to your own code. See the documentation [here](https://gregchapman-dev.github.io/musicdiff) to find out how to customize diff()'s behavior beyond what the command line tool does.
5959

60-
A google colab notebook is available [here](examples/musicdiff_demo.ipynb).
61-
6260
If you are interested in calling lower-level musicdiff APIs to do more complicated things than just visualization in PDFs or diff-like text output, the source for musicdiff's high-level APIs (found [here](musicdiff/__init__.py)) is good example code to read. Note particularly how diff() calls converter21.register() to register converter21's Humdrum and MEI parsers for use by music21. If you call lower-level APIs than diff(), you will need to do this yourself.
6361

6462
## Documentation

pypi_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# musicdiff
22
A Python3 package (and command-line tool) for computing and visualizing (or describing) the notation differences between two music scores, or between two folders of music scores (for ML training runs).
33

4-
musicdiff is focused on visible notation differences, not only on audible musical differences. For example, two tied eighth notes are considered different from a single quarter note. And two beamed 16th notes are considered different from two unbeamed 16th notes. This makes musicdiff particularly useful for assessing the results of Optical Music Recognition software.
4+
musicdiff is focused on visible notation differences, not only on audible musical differences. For example, two tied eighth notes are considered different from a single quarter note. And two beamed 16th notes are considered different from two unbeamed 16th notes. This makes musicdiff particularly useful for evaluating the results of Optical Music Recognition software.
55

66
musicdiff is derived from: [music-score-diff](https://github.com/fosfrancesco/music-score-diff.git)
77
by [Francesco Foscarin](https://github.com/fosfrancesco).

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import setup, find_packages
1414
import pathlib
1515

16-
musicdiffversion = '5.0.0'
16+
musicdiffversion = '5.0.1'
1717

1818
here = pathlib.Path(__file__).parent.resolve()
1919

@@ -51,8 +51,10 @@
5151
'Optical Music Recognition',
5252
'assess',
5353
'assessment',
54+
'evaluation',
5455
'comparison',
5556
'music21',
57+
'OMR-NED'
5658
],
5759

5860
packages=find_packages(),

0 commit comments

Comments
 (0)