From e74c9f0793a8cd4370b196599b356bdbf41ed958 Mon Sep 17 00:00:00 2001 From: Kai Labusch Date: Tue, 12 Nov 2024 14:40:15 +0100 Subject: [PATCH] Improve doc --- qurator/sbb_ner/webapp/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qurator/sbb_ner/webapp/app.py b/qurator/sbb_ner/webapp/app.py index 4bb8bb3..b9797bf 100644 --- a/qurator/sbb_ner/webapp/app.py +++ b/qurator/sbb_ner/webapp/app.py @@ -268,7 +268,7 @@ def ner(model_id=None): else: token = token[2:] if token.startswith('##') else token - # if the output_text plus the current word and token is not a prefix of the original text, it means, + # if the output_text plus the current word and token is not a prefix of the original text, it means, that # we would miss characters. Therefore we take the missing characters from the original text at the current # word position while not original_text.startswith(output_text + word + token) \