Skip to content

Commit

Permalink
Release hotfix version
Browse files Browse the repository at this point in the history
  • Loading branch information
BreezeWhite committed Jun 4, 2021
1 parent f4795eb commit d40e4cd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog

## 0.4.0 - 2021-05-
## 0.4.1-rc0 - 2021-06-04
Hotfix version according to issue [#23](https://github.com/Music-and-Culture-Technology-Lab/omnizart/issues/23)

## Feature
- Add a new piano transcription model and set it as the default model while using `music` module.

## Bugs
- Fix bug while parsing weight files in the checkpoint folder.

---

## 0.4.0 - 2021-05-31
Various improvements on music module and some critical bug fixes.

## Enhancement
Expand Down
2 changes: 1 addition & 1 deletion omnizart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os.environ['VAMP_PATH'] = os.path.join(MODULE_PATH, "resource", "vamp")

__version__ = "0.4.1-rc0"
__version__ = "0.4.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "omnizart"
version = "0.4.1-rc0"
version = "0.4.1"
description = "Omniscient Mozart, being able to transcribe everything in the music."
readme = "README.md"
authors = ["BreezeWhite <[email protected]>", "yjlolo <[email protected]>"]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
'checkpoints/drum/drum_keras/*',
'checkpoints/music/music_note_stream/*',
'checkpoints/music/music_piano/*',
'checkpoints/music/music_piano-v2/*',
'checkpoints/music/music_pop/*',
'checkpoints/patch_cnn/patch_cnn_melody/*',
'checkpoints/vocal/contour/*',
Expand Down Expand Up @@ -60,7 +59,7 @@

setup_kwargs = {
'name': 'omnizart',
'version': '0.4.1-rc0',
'version': '0.4.1',
'description': 'Omniscient Mozart, being able to transcribe everything in the music.',
'long_description': '# OMNIZART\n\n[![build](https://github.com/Music-and-Culture-Technology-Lab/omnizart/workflows/general-check/badge.svg)](https://github.com/Music-and-Culture-Technology-Lab/omnizart/actions?query=workflow%3Ageneral-check)\n[![docs](https://github.com/Music-and-Culture-Technology-Lab/omnizart/workflows/docs/badge.svg?branch=build_doc)](https://music-and-culture-technology-lab.github.io/omnizart-doc/)\n[![PyPI version](https://badge.fury.io/py/omnizart.svg)](https://badge.fury.io/py/omnizart)\n![PyPI - License](https://img.shields.io/pypi/l/omnizart)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/omnizart)](https://pypistats.org/packages/omnizart)\n[![Docker Pulls](https://img.shields.io/docker/pulls/mctlab/omnizart)](https://hub.docker.com/r/mctlab/omnizart)\n\nOmnizart is a Python library that aims for democratizing automatic music transcription.\nGiven polyphonic music, it is able to transcribe pitched instruments, vocal melody, chords, drum events, and beat.\nThis is powered by the research outcomes from [Music and Culture Technology (MCT) Lab](https://sites.google.com/view/mctl/home).\n\n### Transcribe your favorite songs now in Colab! [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://bit.ly/OmnizartColab)\n\n# Quick start\n\nVisit the [complete document](https://music-and-culture-technology-lab.github.io/omnizart-doc/) for detailed guidance.\n\n## Pip\n``` bash\n# Install omnizart\npip install omnizart\n\n# Download the checkpoints\nomnizart download-checkpoints\n\n# Transcribe your songs\nomnizart drum transcribe <path/to/audio.wav>\nomnizart chord transcribe <path/to/audio.wav>\nomnizart music transcribe <path/to/audio.wav>\n```\n\n## Docker\n```\ndocker pull mctlab/omnizart:latest\ndocker run -it mctlab/omnizart:latest bash\n```\n\n# Supported applications\n| Application | Transcription | Training | Evaluation | Description |\n|------------------|--------------------|--------------------|------------|--------------------------------------------------|\n| music | :heavy_check_mark: | :heavy_check_mark: | | Transcribe musical notes of pitched instruments. |\n| drum | :heavy_check_mark: | :interrobang: | | Transcribe events of percussive instruments. |\n| vocal | :heavy_check_mark: | :heavy_check_mark: | | Transcribe note-level vocal melody. |\n| vocal-contour | :heavy_check_mark: | :heavy_check_mark: | | Transcribe frame-level vocal melody (F0). |\n| chord | :heavy_check_mark: | :heavy_check_mark: | | Transcribe chord progressions. |\n| beat | :heavy_check_mark: | :heavy_check_mark: | | Transcribe beat position. |\n\n**NOTES**\nThe current implementation for the drum model has unknown bugs, preventing loss convergence when training from scratch.\nFortunately, you can still enjoy drum transcription with the provided checkpoints.\n\n',
'author': 'BreezeWhite',
Expand Down

0 comments on commit d40e4cd

Please sign in to comment.