Update app.py
Browse files
app.py
CHANGED
@@ -140,9 +140,9 @@ def preprocess_text(text, lang='german'):
|
|
140 |
|
141 |
def phonetic_match(text, query, method='levenshtein_distance'):
|
142 |
if method == 'levenshtein_distance':
|
143 |
-
text_phonetic = jellyfish.
|
144 |
#query_phonetic = jellyfish.cologne_phonetic(query)
|
145 |
-
query_phonetic = jellyfish.
|
146 |
return jellyfish.jaro_winkler(text_phonetic, query_phonetic)
|
147 |
return 0
|
148 |
|
|
|
140 |
|
141 |
def phonetic_match(text, query, method='levenshtein_distance'):
|
142 |
if method == 'levenshtein_distance':
|
143 |
+
text_phonetic = jellyfish.soundex(text)
|
144 |
#query_phonetic = jellyfish.cologne_phonetic(query)
|
145 |
+
query_phonetic = jellyfish.soundex(query)
|
146 |
return jellyfish.jaro_winkler(text_phonetic, query_phonetic)
|
147 |
return 0
|
148 |
|