-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some questions about CausalConvTranspose1d in conv_layer.py #11
Comments
Hi, We handcrafted it because we followed that of the ParallelWaveGAN repo. More details can be found in the following discussion. |
1. According to issue #9, we implement the codec version (activate_audiodec) with more activations like HiFiGAN and release the pre-trained model “symAAD_vctk_48000_hop300”. 2. We fix the MSTFT 2D conv padding issues mentioned in issue #9 and release the updated “symADuniv_vctk_48000_hop300” and “AudioDec_v3_symADuniv_vctk_48000_hop300_clean”. 3. We implement the more flexible CausalConvTranspose1d padding for arbitrary kernel_size and stride according to issue #11. 4. We release a 24kbps model, “symAD_c16_vctk_48000_hop320”, which achieves better speech quality and robustness to unseen data.
The self.pad_length of CausalConvTranspose1d has been updated to "(math.ceil(kernel_size/stride) - 1)" for arbitrary kernel_size and stride settings. |
hello, thanks for your useful code. I don't figure out the class of CausalConvTranspose1d. why we select nn.ReplicationPad1d for stream pad not similar to CausalConv1d which pads constant 0?In CausalConvTranspose1d, I found self.pad_length is equal to 1 no matter kernel _size change values.But in CausalConv1d self.pad_length is relevant to kernel_size.
Does self.pad_length have no links to kernel_size in CausalConvTranspose1d?So don't we change self.pad_length in CausalConvTranspose1d when we change its any parameters?
The text was updated successfully, but these errors were encountered: