fix incorrect channel size for first shortcut

This commit is contained in:
2024-05-18 02:28:35 +01:00
parent cb3fd47324
commit 9f6852ee23

View File

@@ -99,7 +99,7 @@ class MaiRes(nn.Module):
in_channels=64, in_channels=64,
out_channels=128, out_channels=128,
stride=2, stride=2,
shortcut=projection_shortcut(in_channels=64, out_channels=64), shortcut=projection_shortcut(in_channels=64, out_channels=128),
), ),
ResidualBlock( ResidualBlock(
in_channels=128, in_channels=128,