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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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.levenshtein_distance(text)
144
  #query_phonetic = jellyfish.cologne_phonetic(query)
145
- query_phonetic = jellyfish.levenshtein_distance(query)
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