Michela commited on
Commit
03eaea3
·
1 Parent(s): 79cf959

Update app.py

Browse files

Decreased best match ratio for text highlights

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ def find_best_match(needle, haystack):
43
 
44
  # Find the best match that exceeds our threshold
45
  best_match = None
46
- best_match_ratio = 0.9 # Initialize the best match ratio with our minimum threshold
47
 
48
  for match in matches:
49
  i, j, n = match
 
43
 
44
  # Find the best match that exceeds our threshold
45
  best_match = None
46
+ best_match_ratio = 0.5 # Initialize the best match ratio with our minimum threshold
47
 
48
  for match in matches:
49
  i, j, n = match