Open matrix-alpha opened 2 years ago
Sample inference code is here, or did you mean KDSD, FDSD-like evaluations ?
with open('l1.json') as f:
config = Config.load(json.load(f))
diffwave = VLBDiffWaveApp(config.model)
diffwave.restore('./l1/l1_99.ckpt')
# mel: [B, T, mel]
audio, _ = diffwave(mel, timesteps=50, key=jax.random.PRNGKey(0))
Hi, thanks for implementation. Can you provide the evaluation code?