Spaces:
Sleeping
Sleeping
Update inference_app.py
Browse filesreturn input_protein unchanged
- inference_app.py +1 -1
inference_app.py
CHANGED
|
@@ -129,7 +129,7 @@ def predict (input_sequence, input_ligand,input_msa, input_protein):
|
|
| 129 |
metrics = {"cnn_score": cnn_score}
|
| 130 |
end_time = time.time()
|
| 131 |
run_time = end_time - start_time
|
| 132 |
-
return [
|
| 133 |
|
| 134 |
with gr.Blocks() as app:
|
| 135 |
|
|
|
|
| 129 |
metrics = {"cnn_score": cnn_score}
|
| 130 |
end_time = time.time()
|
| 131 |
run_time = end_time - start_time
|
| 132 |
+
return [input_protein, "ligand_output.sdf"], metrics, run_time
|
| 133 |
|
| 134 |
with gr.Blocks() as app:
|
| 135 |
|