Open turian opened 2 years ago
Hello @turian,
Thank you for your question. Sorry if we didn't make this clear enough in this ReadMe section. You should set the synthesis_mode
in efficient_vdvae_torch or efficient_vdvae_jax/hparams.cfg
in [synthesis] section to 'generation' in order to be able to do unconditional generation.
You should not get this error because the data_loader argument is set to None, if you specify 'generation' in synthesis_mode
as you can see from this snippet of code in synthesize.py
. Most likely, you are trying to use 'reconstruction' mode which calculate the NLL on your test_set, so it obviously requires having the original dataset.
Hopefully this makes it clear :)
Thank you, Louay Hazami
I want to do unconditional generation from checkpoints and logs WITHOUT needing to download the original dataset. How?