rahideer commited on
Commit
79f922f
·
verified ·
1 Parent(s): 5cbfc4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def load_data():
16
  df["text"] = df["title"].fillna('') + ". " + df["description"].fillna('')
17
  return df
18
 
19
- df = load_data()
20
  corpus = df["text"].tolist()
21
  corpus_embeddings = embedder.encode(corpus, convert_to_tensor=True)
22
 
 
16
  df["text"] = df["title"].fillna('') + ". " + df["description"].fillna('')
17
  return df
18
 
19
+
20
  corpus = df["text"].tolist()
21
  corpus_embeddings = embedder.encode(corpus, convert_to_tensor=True)
22