Spaces:
Sleeping
Sleeping
File size: 446 Bytes
8146713 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
##############################################################################
# Foreing utils.py from HiFi-GAN
##############################################################################
def init_weights(m, mean=0.0, std=0.01):
classname = m.__class__.__name__
if classname.find("Conv") != -1:
m.weight.data.normal_(mean, std)
def get_padding(kernel_size, dilation=1):
return int((kernel_size*dilation - dilation)/2)
|