Skip to content

Releases: magenta/ddsp

v0.13.0 (last release before breaking change)

11 Nov 21:25
Compare
Choose a tag to compare
Refactor model. Optionally return dict from __call__(), remove get_co…

v0.12.0 (ICML 2020 workshop)

13 Aug 00:00
Compare
Choose a tag to compare

Release for reproducing the results from the 2020 ICML SAS workshop paper (https://openreview.net/forum?id=RlVTYWhsky7).

WIP code from the paper added with EXPERIMENTAL disclaimers.
Gin configs and details provided in ddsp/training/gin/papers/icml2020

v.0.10.0

24 Jul 07:55
Compare
Choose a tag to compare
  • Custom cumsum operation to avoid phase accumulation errors for generating long sequences.
  • Script to automatically update old gin configs.

v0.8.0

18 Jul 05:18
Compare
Choose a tag to compare

Add custom cumsum function that doesn't accumulate phase errors like tf.cumsum.

v0.7.0

15 Jul 18:21
Compare
Choose a tag to compare
  • Updated pitch detection metrics (RPA, RCA)
  • Sinusoidal Synthesizer
  • Warm starting models (model_dir -> save_dir, restore_dir)

v0.5.1

05 Jun 23:40
Compare
Choose a tag to compare

Small fixes to bugs introduced by refactor :).

v0.5.0

05 Jun 19:56
Compare
Choose a tag to compare

Some bug fixes and a refactor of train_util and eval_util.

v0.4.0

03 Jun 01:15
Compare
Choose a tag to compare
  • New data normalization in the demo colab notebooks.
  • Tiny model config.
  • Most (but not all) of the variable sample rate PRs.
  • Tests and bug fixes.

v0.2.0

29 Apr 21:26
Compare
Choose a tag to compare

Simplify and refactor RnnFcDecoder.

  • Requires old models to add a single line to their operative gin configs, or --gin_param, RnnFcDecoder.input_keys = ('f0_scaled', 'ld_scaled')

v0.1.0

24 Apr 01:07
Compare
Choose a tag to compare
  • Models now use self._loss_dict to keep track of losses, and not the built-in keras self.losses (so that we can keep track of each loss name without needing a synced parallel list).