From 135fc578a5fc0021a88ed6249b180625fbf1769f Mon Sep 17 00:00:00 2001 From: Jamie Date: Thu, 5 Jan 2023 11:31:27 +0800 Subject: [PATCH] [Fix] Fix a typo in runner/hooks/evaluation.py --- mmcv/runner/hooks/evaluation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmcv/runner/hooks/evaluation.py b/mmcv/runner/hooks/evaluation.py index 181e03409f..ad4b7e3eeb 100644 --- a/mmcv/runner/hooks/evaluation.py +++ b/mmcv/runner/hooks/evaluation.py @@ -372,7 +372,7 @@ def evaluate(self, runner, results): runner.log_buffer.ready = True if self.save_best is not None: - # If the performance of model is pool, the `eval_res` may be an + # If the performance of model is poor, the `eval_res` may be an # empty dict and it will raise exception when `self.save_best` is # not None. More details at # https://github.com/open-mmlab/mmdetection/issues/6265.