From a7fa82a83f6c49170317922c92bbf28ee624e80d Mon Sep 17 00:00:00 2001 From: jgysland Date: Sun, 30 Apr 2017 16:56:50 -0400 Subject: [PATCH] KISS fuzzy match help text --- src/documents/models.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/documents/models.py b/src/documents/models.py index 707b0fcca..54f45ae01 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -47,11 +47,9 @@ class MatchingModel(models.Model): "the PDF exactly as you've entered it, and \"regular expression\" " "uses a regex to match the PDF. (If you don't know what a regex " "is, you probably don't want this option.) Finally, a \"fuzzy " - "match\" strips all punctuation from both the match candidate " - "and the OCR'd text and looks for a Levenshtein \"partial ratio\" " - "(as implemented in the Python package \"FuzzyWuzzy\") of >= 90, " - "which can be useful for matching against documents with " - "imperfections that foil accurate OCR." + "match\" looks for words or phrases that are mostly—but not " + "exactly—the same, which can be useful for matching against " + "documents containg imperfections that foil accurate OCR." ) )