Remove mistaken factor of 4.0

This commit is contained in:
Daniel Povey 2022-12-22 23:19:16 +08:00
parent 49bf3ddc66
commit b2125535fb

View File

@ -1899,7 +1899,7 @@ class Conv2dSubsampling(nn.Module):
x = self.out_whiten(x)
x = self.out_norm(x)
x = self.dropout(x)
return 4.0 * x
return x
class AttentionCombine(nn.Module):
"""