Merge branch 'k2-fsa:master' into dev/k2ssl

This commit is contained in:
Yifan Yang 2025-01-06 17:31:34 +08:00 committed by GitHub
commit dcc4730219
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -902,7 +902,7 @@ class Swish(torch.nn.Module):
"""Construct an Swish object."""
def forward(self, x: Tensor) -> Tensor:
"""Return Swich activation function."""
"""Return Swish activation function."""
return x * torch.sigmoid(x)