Skip to content

Commit f52dac8

Browse files
authoredFeb 25, 2021
[Fix]: Add types of runner in configs (open-mmlab#4669)
* Add type of runner in configs * fix missing config
1 parent 14d250f commit f52dac8

File tree

95 files changed

+100
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+100
-95
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
_base_ = './cascade_rcnn_r50_fpn_1x_coco.py'
22
# learning policy
33
lr_config = dict(step=[16, 19])
4-
runner = dict(max_epochs=20)
4+
runner = dict(type='EpochBasedRunner', max_epochs=20)

‎configs/centripetalnet/centripetalnet_hourglass104_mstest_16x6_210e_coco.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@
102102
warmup_iters=500,
103103
warmup_ratio=1.0 / 3,
104104
step=[190])
105-
runner = dict(max_epochs=210)
105+
runner = dict(type='EpochBasedRunner', max_epochs=210)

0 commit comments

Comments
 (0)