Spaces:
Running
Running
Simon Dürr
commited on
Commit
•
f095f6c
1
Parent(s):
44470f9
fix molecule3d
Browse files- inference_app.py +1 -1
inference_app.py
CHANGED
@@ -31,7 +31,7 @@ with gr.Blocks() as app:
|
|
31 |
# dropdown_option = gr.Dropdown(["Option 1", "Option 2", "Option 3"], label="Radio Option")
|
32 |
|
33 |
btn = gr.Button("Run Inference")
|
34 |
-
out =
|
35 |
run_time = gr.Textbox(label="Runtime")
|
36 |
|
37 |
btn.click(predict, inputs=[input_sequence, input_ligand], outputs=[out, run_time])
|
|
|
31 |
# dropdown_option = gr.Dropdown(["Option 1", "Option 2", "Option 3"], label="Radio Option")
|
32 |
|
33 |
btn = gr.Button("Run Inference")
|
34 |
+
out = Molecule3D()
|
35 |
run_time = gr.Textbox(label="Runtime")
|
36 |
|
37 |
btn.click(predict, inputs=[input_sequence, input_ligand], outputs=[out, run_time])
|