From fa7c31a50851c737a6afa00ef203ecd863a620ac Mon Sep 17 00:00:00 2001 From: Jesse Engel Date: Sun, 29 Aug 2021 22:48:00 -0700 Subject: [PATCH] Centered frames and online preprocessing. * Function for centering and uncentering frames * Preprocesser to calculate centered F0 and power online. * `pad_end` options to compute_power and compute_loudness, preserving default behavior but allowing turning off of end padding. * Processor to remove center padding from synthesis output. * vst.gin config for training with centered inputs and outputs. * Refactor scaling functions in preprocessing. PiperOrigin-RevId: 393703944 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0be2e7..ad73b69 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ REQUIRED_PACKAGES = [ 'absl-py', 'attrs', - 'bokeh >= 0.12.0', + 'bokeh <= 2.3.3', 'intervaltree >= 2.1.0', 'IPython', 'librosa >= 0.6.2',