Reduce 1st conv channels from 64 to 32

This commit is contained in:
Daniel Povey 2022-03-30 00:44:18 +08:00
parent 4e453a4bf9
commit 1b8d7defd0

View File

@ -954,7 +954,7 @@ class Conv2dSubsampling(nn.Module):
def __init__(self, in_channels: int,
out_channels: int,
layer1_channels: int = 64,
layer1_channels: int = 32,
layer2_channels: int = 128) -> None:
"""
Args: