Skip to content

Commit

Permalink
Switch VST inference outputs back to fixed argument order.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 387850957
  • Loading branch information
jesseengel authored and Magenta Team committed Jul 30, 2021
1 parent d3e185e commit 3f90736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions ddsp/training/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,6 @@ def call(self, inputs, **unused_kwargs):
amps = controls['harmonic']['controls']['amplitudes']
hd = controls['harmonic']['controls']['harmonic_distribution']
noise = controls['filtered_noise']['controls']['magnitudes']
outputs = {
'amps': amps,
'hd': hd,
'noise': noise,
}
return outputs
return amps, hd, noise


2 changes: 1 addition & 1 deletion ddsp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
pulling in all the dependencies in __init__.py.
"""

__version__ = '1.6.2'
__version__ = '1.6.3'

0 comments on commit 3f90736

Please sign in to comment.