Spaces:
Running
Running
roni
commited on
Commit
·
db68005
1
Parent(s):
79b6488
removed debug mode
Browse files- app.py +1 -2
- get_index.py +1 -1
app.py
CHANGED
@@ -90,5 +90,4 @@ with gr.Blocks() as demo:
|
|
90 |
switch_viz, inputs=results_selector, outputs=[protein_viz, viz_header]
|
91 |
)
|
92 |
|
93 |
-
|
94 |
-
demo.launch()
|
|
|
90 |
switch_viz, inputs=results_selector, outputs=[protein_viz, viz_header]
|
91 |
)
|
92 |
|
93 |
+
demo.launch()
|
|
get_index.py
CHANGED
@@ -19,5 +19,5 @@ def get_engine(index_repo: str, model_repo: str):
|
|
19 |
)
|
20 |
sys.path.append(str(local_arch_path))
|
21 |
from protein_index import ProteinSearchEngine # pylint: disable=import-error,import-outside-toplevel
|
22 |
-
|
23 |
return ProteinSearchEngine(data_path=index_path)
|
|
|
19 |
)
|
20 |
sys.path.append(str(local_arch_path))
|
21 |
from protein_index import ProteinSearchEngine # pylint: disable=import-error,import-outside-toplevel
|
22 |
+
|
23 |
return ProteinSearchEngine(data_path=index_path)
|