Whitefish
Whitefish
You got the whole dataset from Wikipedia, but the model needs train. Json, dev. Json and test.Json to run the model successfully. I suggest you divide the whole file into...
请问 我的显卡是两张L40,训练co_deformable_detr_swin_large_1x_coco.py,设置多少的per_smple_cpu和base_batch_size合适呢? 刚开始训练的时候学习率没改(2e-4),上面的两个参数没改(2,16)。但是,训练完第一个epoch发现评估结果都是0(之前在co_deformable_detr_r50_1x_coco.py上遇到过,改低学习率奏效)。 想请您给个建议,学习率、per_smple_cpu,base_batch_size设置多少比较合适呢?(下面是默认值) ```auto_scale_lr = dict(enable=False, base_batch_size=16)```,```optimizer = dict( @type='AdamW', lr=2e-4, weight_decay=1e-4, paramwise_cfg=dict( custom_keys={ 'backbone': dict(lr_mult=0.1), 'sampling_offsets': dict(lr_mult=0.1), 'reference_points': dict(lr_mult=0.1) }))``` @TempleX98 感谢您赐教!
我看默认的配置文件里没有load_from,我设置了pretrained="xxxx"参数和use_checkpoint=True,原来需要设置load_from参数,非常感谢您的指导!