Merge pull request #1 from smttsp/ISSUE-2337/bug/unet_param
[FIX] fixing bug in `test_cfg` for U-Net _base_ scriptpull/2347/head
commit
bd87c92571
|
@ -47,4 +47,4 @@ model = dict(
|
|||
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
|
||||
# model training and testing settings
|
||||
train_cfg=dict(),
|
||||
test_cfg=dict(mode='slide', crop_size=256, stride=170))
|
||||
test_cfg=dict(mode='slide', crop_size=(256, 256), stride=(170, 170)))
|
||||
|
|
|
@ -48,4 +48,4 @@ model = dict(
|
|||
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
|
||||
# model training and testing settings
|
||||
train_cfg=dict(),
|
||||
test_cfg=dict(mode='slide', crop_size=256, stride=170))
|
||||
test_cfg=dict(mode='slide', crop_size=(256, 256), stride=(170, 170)))
|
||||
|
|
|
@ -47,4 +47,4 @@ model = dict(
|
|||
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
|
||||
# model training and testing settings
|
||||
train_cfg=dict(),
|
||||
test_cfg=dict(mode='slide', crop_size=256, stride=170))
|
||||
test_cfg=dict(mode='slide', crop_size=(256, 256), stride=(170, 170)))
|
||||
|
|
Loading…
Reference in New Issue