File size: 1,223 Bytes
c6f2a96
0e65c4e
 
 
 
 
 
 
 
 
c6f2a96
0e65c4e
c6f2a96
0e65c4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
tags:
- espnet
- audio
- audio-to-audio
- vocoder
language: 
- en
datasets:
- vctk
license: cc-by-4.0
inference: false
---

## Vocoder model - HifiGAN - English

https://github.com/kan-bayashi/ParallelWaveGAN

**No support given.**

### Details

```
sampling_rate: 44100     # Sampling rate.
fft_size: 2048           # FFT size.
hop_size: 512            # Hop size.
win_length: 2048         # Window length.
                         # If set to null, it will be the same as fft_size.
window: "hann"           # Window function.
num_mels: 80             # Number of mel basis.
fmin: 0                 # Minimum freq in mel basis calculation.
fmax: 22050               # Maximum frequency in mel basis calculation.
generator_type: HiFiGANGenerator
generator_params:
    in_channels: 80                       # Number of input channels.
    out_channels: 1                       # Number of output channels.
    channels: 512                         # Number of initial channels.
    kernel_size: 7                        # Kernel size of initial and final conv layers.
    upsample_scales: [8, 8, 2, 2, 2]         # Upsampling scales.
    upsample_kernel_sizes: [16, 16, 4, 4, 4] # Kernel size for upsampling layers.
```