Skip to content

Commit

Permalink
Adding version check
Browse files Browse the repository at this point in the history
- Using pkg_resources
- Test is done
  • Loading branch information
Yeongtae committed Aug 15, 2018
1 parent 31ebdee commit 90a9ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hparams.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@

#During synthesis, there is no max_time_steps limitation so the model can sample much longer audio than 8k(or 13k) steps. (Audio can go up to 500k steps, equivalent to ~21sec on 24kHz)
#Usually your GPU can handle 1x~2x wavenet_batch_size during synthesis for the same memory amount during training (because no gradients to keep and ops to register for backprop)
wavenet_synthesis_batch_size = 4*2, #This ensure that wavenet synthesis goes up to 4x~8x faster when synthesizing multiple sentences. Watch out for OOM with long audios.
wavenet_synthesis_batch_size = 4 * 2, #This ensure that wavenet synthesis goes up to 4x~8x faster when synthesizing multiple sentences. Watch out for OOM with long audios.

wavenet_learning_rate = 1e-3,
wavenet_adam_beta1 = 0.9,
Expand Down

0 comments on commit 90a9ada

Please sign in to comment.