matthewfarant commited on
Commit
bd1a00f
1 Parent(s): 6aff003

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ def decision(user_input, type, catalog, product_name_catalog):
92
 
93
  # Based on probability
94
 
95
- catalog['Concat Input'] = user_input + ' dan ' + catalog['Registered Product'].astype(str)
96
 
97
  catalog['Similarity Score'] = catalog['Concat Input'].apply(lambda x: pipe_match(x)[0]['score'])
98
 
 
92
 
93
  # Based on probability
94
 
95
+ catalog['Concat Input'] = user_input + ' [SEP] ' + catalog['Registered Product'].astype(str)
96
 
97
  catalog['Similarity Score'] = catalog['Concat Input'].apply(lambda x: pipe_match(x)[0]['score'])
98