Update app.py
Browse files
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 +
|
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)
|