mirror of https://github.com/open-mmlab/mmocr.git
15 lines
290 B
Python
15 lines
290 B
Python
|
_base_ = 'default_runtime.py'
|
||
|
|
||
|
default_hooks = dict(
|
||
|
logger=dict(type='LoggerHook', interval=1000),
|
||
|
checkpoint=dict(
|
||
|
type='CheckpointHook',
|
||
|
interval=10000,
|
||
|
by_epoch=False,
|
||
|
max_keep_ckpts=1),
|
||
|
)
|
||
|
|
||
|
# Evaluation
|
||
|
val_evaluator = None
|
||
|
test_evaluator = None
|