From 16e0020901781b515ba398dbd8630a3a41e555f4 Mon Sep 17 00:00:00 2001 From: mrq Date: Fri, 25 Aug 2023 19:50:19 -0500 Subject: [PATCH] disabled chunkwise_recurrent for 2x speed gains (I suppose it has been working the entire time, but I have not been properly grabbing things, and this might explain why the output is bad) --- vall_e/models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vall_e/models/base.py b/vall_e/models/base.py index ebb4a73..03c6c18 100755 --- a/vall_e/models/base.py +++ b/vall_e/models/base.py @@ -171,7 +171,7 @@ class Base(nn.Module): dropout=p_dropout, checkpoint_activations=True, - chunkwise_recurrent=self.causal, + chunkwise_recurrent=False, # self.causal, recurrent_chunkwise_size=64, no_output_layer=True, decoder_normalize_before=True,