from local

This commit is contained in:
dohe0342 2023-01-04 00:19:47 +09:00
parent 232ce0a523
commit a05dcf0f2c
2 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class Conformer(EncoderInterface):
)
self._init_state: List[torch.Tensor] = [torch.empty(0)]
self.alpha = nn.Parameters(torch.rand(4))
self.alpha = nn.Parameter(torch.rand(4))
self.sigmoid = nn.Sigmoid()
self.layer_norm = nn.LayerNorm(512)