Spaces:
Running
Running
comment unnecessary pickle files
Browse files
app.py
CHANGED
@@ -97,10 +97,10 @@ with gr.Blocks() as demo:
|
|
97 |
# dna_index_IVF = faiss.read_index("big_dna_index_IVFFlat.index")
|
98 |
# dna_index_LSH = faiss.read_index("big_dna_index_LSH.index")
|
99 |
|
100 |
-
with open("dataset_processid_list.pickle", "rb") as f:
|
101 |
-
|
102 |
-
with open("processid_to_index.pickle", "rb") as f:
|
103 |
-
|
104 |
with open("big_indx_to_id_dict.pickle", "rb") as f:
|
105 |
indx_to_id_dict = pickle.load(f)
|
106 |
|
|
|
97 |
# dna_index_IVF = faiss.read_index("big_dna_index_IVFFlat.index")
|
98 |
# dna_index_LSH = faiss.read_index("big_dna_index_LSH.index")
|
99 |
|
100 |
+
# with open("dataset_processid_list.pickle", "rb") as f:
|
101 |
+
# dataset_processid_list = pickle.load(f)
|
102 |
+
# with open("processid_to_index.pickle", "rb") as f:
|
103 |
+
# processid_to_index = pickle.load(f)
|
104 |
with open("big_indx_to_id_dict.pickle", "rb") as f:
|
105 |
indx_to_id_dict = pickle.load(f)
|
106 |
|