Zeitstaub commited on
Commit
ba545ff
1 Parent(s): 59e95b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def find_similar_texts(model_name, input_text):
45
  text_embeddings['euclidean_distance'] = distances
46
  sorted_embeddings = text_embeddings.sort_values(by='euclidean_distance', ascending=True)
47
  top_five = sorted_embeddings.head(5)[['abstract', 'patent no', 'title']]
48
- formatted_output = '\n\n'.join([f"Patent No: {row['patent no']}\n: {row['title']}\n {row['abstract']}\n" for index, row in top_five.iterrows()])
49
  return formatted_output
50
  else:
51
  return "It seems there is no patent abstract close to your description."
 
45
  text_embeddings['euclidean_distance'] = distances
46
  sorted_embeddings = text_embeddings.sort_values(by='euclidean_distance', ascending=True)
47
  top_five = sorted_embeddings.head(5)[['abstract', 'patent no', 'title']]
48
+ formatted_output = '\n\n'.join([f"Patent No: {row['patent no']}\n {row['title']}\n {row['abstract']}\n" for index, row in top_five.iterrows()])
49
  return formatted_output
50
  else:
51
  return "It seems there is no patent abstract close to your description."