TTP / mmdet /configs /dino /dino_4scale_r50_8xb2_24e_coco.py
KyanChen's picture
Upload 1861 files
3b96cb1
raw
history blame
368 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from mmengine.config import read_base
from mmengine.runner.loops import EpochBasedTrainLoop
with read_base():
from .dino_4scale_r50_8xb2_12e_coco import *
max_epochs = 24
train_cfg.update(
dict(type=EpochBasedTrainLoop, max_epochs=max_epochs, val_interval=1))
param_scheduler[0].update(dict(milestones=[20]))