Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ with gr.Blocks() as demo:
|
|
64 |
pdb_file = gr.File(label="Upload PDB File")
|
65 |
|
66 |
predict_button = gr.Button("Predict Stability")
|
67 |
-
prediction_output = gr.Textbox(label=
|
68 |
|
69 |
predict_button.click(fn=predict_stability, inputs=[model_choice, organism_choice, pdb_file], outputs=prediction_output)
|
70 |
|
|
|
64 |
pdb_file = gr.File(label="Upload PDB File")
|
65 |
|
66 |
predict_button = gr.Button("Predict Stability")
|
67 |
+
prediction_output = gr.Textbox(label="Stability Prediction", interactive=False)
|
68 |
|
69 |
predict_button.click(fn=predict_stability, inputs=[model_choice, organism_choice, pdb_file], outputs=prediction_output)
|
70 |
|