From 1496f1fa0745aa247f86631911eeaf425f607b91 Mon Sep 17 00:00:00 2001 From: Qslia <49663251+qslia@users.noreply.github.com> Date: Wed, 8 Mar 2023 12:37:57 +0800 Subject: [PATCH] correct word spelling (#1659) --- mmocr/utils/ocr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmocr/utils/ocr.py b/mmocr/utils/ocr.py index 3d886d23..634cdc6a 100755 --- a/mmocr/utils/ocr.py +++ b/mmocr/utils/ocr.py @@ -361,7 +361,7 @@ class MMOCR: # Check if the det/recog model choice is valid if self.td and self.td not in textdet_models: raise ValueError(self.td, - 'is not a supported text detection algorthm') + 'is not a supported text detection algorithm') elif self.tr and self.tr not in textrecog_models: raise ValueError(self.tr, 'is not a supported text recognition algorithm')