Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ def phonetic_match(text, query, 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.
|
147 |
return 0
|
148 |
|
149 |
# Custom Tokenizer
|
|
|
143 |
text_phonetic = jellyfish.soundex(text)
|
144 |
#query_phonetic = jellyfish.cologne_phonetic(query)
|
145 |
query_phonetic = jellyfish.soundex(query)
|
146 |
+
return jellyfish.levenshtein_distance(text_phonetic, query_phonetic)
|
147 |
return 0
|
148 |
|
149 |
# Custom Tokenizer
|