HifiGAN resblocks are applied sequentially.
See original GitHub issuehttps://github.com/TensorSpeech/TensorFlowTTS/blob/master/tensorflow_tts/models/hifigan.py#L162
for j in range(config.stacks):
layers += [
TFHifiResBlock(
kernel_size=config.stack_kernel_size[j],
filters=config.filters // (2 ** (i + 1)),
dilation_rate=config.stack_dilation_rate[j],
use_bias=config.use_bias,
nonlinear_activation=config.nonlinear_activation,
nonlinear_activation_params=config.nonlinear_activation_params,
is_weight_norm=config.is_weight_norm,
initializer_seed=config.initializer_seed,
name="hifigan_resblock_._{}._._{}".format(i, j),
)
]
HifiGAN resblocks should be applied in parallel.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
HiFi-GAN: Generative Adversarial Networks for Efficient ... - arXiv
Multi-Scale Discriminator Because each sub-discriminator in MPD only accepts disjoint samples, we add MSD to consecutively evaluate the audio ...
Read more >HiFi-GAN: Generative Adversarial Networks for Efficient and ...
In our paper, we proposed HiFi-GAN: a GAN-based model capable of generating high fidelity speech efficiently. We provide our implementation and pretrained ...
Read more >espnet2.gan_tts package — ESPnet 202209 documentation
HiFi-GAN multi-scale discriminator module. Initilize HiFiGAN multi-scale discriminator module. Parameters. scales (int) – Number of multi-scales.
Read more >A Voice Cloning Method Based on the Improved HiFi-GAN ...
(3) The one-dimensional depth-wise separable convolution is used to replace ... The improved HiFi-GAN model remarkably reduces the number of vocoder model ...
Read more >HiFi-GAN Explained | Papers With Code
HiFi-GAN is a generative adversarial network for speech synthesis. ... in MelGAN is used, which consecutively evaluates audio samples at different levels.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@hccho2 I know it, but I think it does not affect a result much. I will fix an implementation in the next release. I will also check if the model inference faster or not 😄 .
@dathudeptrai The issue I’m talking about isn’t the efficient side of the computation.
origin implementation:
this repo: