fix fc neuron count
This commit is contained in:
@@ -175,7 +175,7 @@ class MaiRes(nn.Module):
|
|||||||
)
|
)
|
||||||
|
|
||||||
self.avgpool = nn.AvgPool2d(kernel_size=RESNET_KERNEL_SIZE)
|
self.avgpool = nn.AvgPool2d(kernel_size=RESNET_KERNEL_SIZE)
|
||||||
self.fc = nn.Linear(in_features=1000, out_features=1)
|
self.fc = nn.Linear(in_features=8192, out_features=1)
|
||||||
|
|
||||||
def forward(self, x):
|
def forward(self, x):
|
||||||
x = self.conv(x)
|
x = self.conv(x)
|
||||||
|
Reference in New Issue
Block a user