whai362 / pan_pp.pytorch

Official implementations of PSENet, PAN and PAN++.
Apache License 2.0
439 stars 90 forks source link

Config and Finetune? #79

Closed lrfighting closed 2 years ago

lrfighting commented 2 years ago

What do N and Y mean in Finetune? I looked at the config at the back of the table, but I didn't find the difference?

image

czczup commented 2 years ago

What do N and Y mean in Finetune? I looked at the config at the back of the table, but I didn't find the difference?

image

Hi, N means No, and Y means Yes. These configs are different in train_cfg. For example:

train_cfg = dict(
    lr=1e-3,
    schedule='polylr',
    epoch=600,
    optimizer='Adam',
    pretrain='checkpoints/pan_r18_synth/checkpoint_1ep.pth.tar' # Notice here
)