Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cypw committed Jul 31, 2018
1 parent 489031c commit 4d0f5a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network/mfnet_3d.py
Expand Up @@ -83,8 +83,8 @@ def __init__(self, num_classes, pretrained=False, **kwargs):
self.maxpool = nn.MaxPool3d(kernel_size=(1,3,3), stride=(1,2,2), padding=(0,1,1))

# conv2 - x56 (x8)
num_mid = 64
conv2_num_out = 128
num_mid = 96
conv2_num_out = 96
self.conv2 = nn.Sequential(OrderedDict([
("B%02d"%i, MF_UNIT(num_in=conv1_num_out if i==1 else conv2_num_out,
num_mid=num_mid,
Expand Down

0 comments on commit 4d0f5a9

Please sign in to comment.