Update decoder.py (#1792)

Minor comment correction.
This commit is contained in:
p0p4k
2022-07-26 13:06:06 +02:00
committed by GitHub
parent 9d32cbc3db
commit 10195c4eba
+2 -2
View File
@@ -29,11 +29,11 @@ def squeeze(x, x_mask=None, num_sqz=2):
def unsqueeze(x, x_mask=None, num_sqz=2):
"""GlowTTS unsqueeze operation
"""GlowTTS unsqueeze operation (revert the squeeze)
Note:
each 's' is a n-dimensional vector.
``[[s1, s3, s5], [s2, s4, s6]] --> [[s1, s3, s5], [s2, s4, s6]]``
``[[s1, s3, s5], [s2, s4, s6]] --> [[s1, s3, s5, s2, s4, s6]]``
"""
b, c, t = x.size()