change log interval from 200 to 100

pull/608/head
zuchen.wang 2021-11-19 14:39:10 +08:00
parent c628c5d9ff
commit dae8be0608
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ class DefaultTrainer(TrainerBase):
if comm.is_main_process():
ret.append(hooks.PeriodicCheckpointer(self.checkpointer, cfg.SOLVER.CHECKPOINT_PERIOD))
# run writers in the end, so that evaluation metrics are written
ret.append(hooks.PeriodicWriter(self.build_writers(), 200))
ret.append(hooks.PeriodicWriter(self.build_writers(), 100))
return ret