Remove BatchNorm, use LayerNorm

This commit is contained in:
Daniel Povey 2021-08-22 11:56:22 +08:00
parent 076a70b62d
commit ea43b49ef2

View File

@ -864,7 +864,7 @@ class ConvolutionModule(nn.Module):
groups=channels,
bias=bias,
)
self.norm = nn.BatchNorm1d(channels)
self.norm = nn.LayerNorm(channels)
self.pointwise_conv2 = nn.Conv1d(
channels,
channels,