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)

This commit is contained in:
mrq 2023-08-25 19:50:19 -05:00
parent 6455a2f9d7
commit 16e0020901

View File

@ -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,