Chris4K commited on
Commit
4252190
·
verified ·
1 Parent(s): 773c145

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.jaro_winkler(text_phonetic, query_phonetic)
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