from local

This commit is contained in:
dohe0342 2023-01-03 13:33:01 +09:00
parent a433f440bb
commit 6ffc0bcd5b
2 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,8 @@ class ConvolutionModule(nn.Module):
bias=bias,
)
self.norm = nn.BatchNorm1d(channels)
self.layer_norm = nn.LayerNorm(channels)
self.pointwise_conv2 = nn.Conv1d(
channels,
channels,