From d10da5f41e126e7b71a6b5ffb8e8cc7accc5f9aa Mon Sep 17 00:00:00 2001 From: rafaelvalle Date: Thu, 7 Jun 2018 13:02:23 -0700 Subject: [PATCH] hparams.py: commenting n_frames_per_step to indicate that currently only 1 frame per step is supported now --- hparams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hparams.py b/hparams.py index 4476022..f6622e0 100644 --- a/hparams.py +++ b/hparams.py @@ -53,7 +53,7 @@ def create_hparams(hparams_string=None, verbose=False): encoder_embedding_dim=512, # Decoder parameters - n_frames_per_step=1, + n_frames_per_step=1, # currently only 1 is supported decoder_rnn_dim=1024, prenet_dim=256, max_decoder_steps=1000,