m7n commited on
Commit
d8812f8
·
verified ·
1 Parent(s): e2f2bc8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -252,7 +252,7 @@ def predict(text_input, sample_size_slider, reduce_sample_checkbox,sample_reduct
252
 
253
 
254
  progress(0.3, desc="Embedding Data...")
255
- texts_to_embedd = [title + tokenizer.sep_token + publication + tokenizer.sep_token + abstract for title, publication, abstract in zip(records_df['title'],records_df['parsed_publication'], records_df['abstract'])]
256
 
257
  embeddings = create_embeddings(texts_to_embedd)
258
  print(embeddings)
 
252
 
253
 
254
  progress(0.3, desc="Embedding Data...")
255
+ texts_to_embedd = [title + ' ' + abstract for title, publication, abstract in zip(records_df['title'],records_df['parsed_publication'], records_df['abstract'])]
256
 
257
  embeddings = create_embeddings(texts_to_embedd)
258
  print(embeddings)