orionweller commited on
Commit
99526c6
·
1 Parent(s): 1047f73
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -159,7 +159,7 @@ def load_faiss_index(dataset_name):
159
  return faiss.read_index(index_path)
160
  return None
161
 
162
- def search_queries(dataset_name, q_reps, depth=100):
163
  faiss_index = load_faiss_index(dataset_name)
164
  if faiss_index is None:
165
  raise ValueError(f"No FAISS index found for dataset {dataset_name}")
 
159
  return faiss.read_index(index_path)
160
  return None
161
 
162
+ def search_queries(dataset_name, q_reps, depth=1000):
163
  faiss_index = load_faiss_index(dataset_name)
164
  if faiss_index is None:
165
  raise ValueError(f"No FAISS index found for dataset {dataset_name}")