samewind / configs /specdetr_sb-2s-36e_hsi.py
scfive
Resolve README.md conflict and continue rebase
e8f2571
raw
history blame contribute delete
314 Bytes
_base_ = './specdetr_sb-2s-100e_hsi.py'
max_epochs = 36
train_cfg = dict(
type='EpochBasedTrainLoop', max_epochs=max_epochs, val_interval=36)
param_scheduler = [
dict(
type='MultiStepLR',
begin=0,
end=max_epochs,
by_epoch=True,
milestones=[30],
gamma=0.1)
]