Spaces:
Runtime error
Runtime error
Commit
·
f368d83
1
Parent(s):
8e4db71
spelling and copy-paste error fixed in ps
Browse files- mammal_demo/ps_task.py +3 -3
mammal_demo/ps_task.py
CHANGED
|
@@ -99,7 +99,7 @@ Given the protein sequence, estimate if it's water-soluble.
|
|
| 99 |
)
|
| 100 |
with gr.Row():
|
| 101 |
run_mammal = gr.Button(
|
| 102 |
-
"Run Mammal prompt for
|
| 103 |
variant="primary",
|
| 104 |
)
|
| 105 |
with gr.Row():
|
|
@@ -109,8 +109,8 @@ Given the protein sequence, estimate if it's water-soluble.
|
|
| 109 |
decoded = gr.Textbox(label="Mammal output")
|
| 110 |
predicted_class = gr.Textbox(label="Mammal prediction")
|
| 111 |
with gr.Column():
|
| 112 |
-
non_norm_score = gr.Number(label="Non
|
| 113 |
-
norm_score = gr.Number(label="
|
| 114 |
run_mammal.click(
|
| 115 |
fn=self.create_and_run_prompt,
|
| 116 |
inputs=[model_name_widget, protein_textbox],
|
|
|
|
| 99 |
)
|
| 100 |
with gr.Row():
|
| 101 |
run_mammal = gr.Button(
|
| 102 |
+
"Run Mammal prompt for protein solubility",
|
| 103 |
variant="primary",
|
| 104 |
)
|
| 105 |
with gr.Row():
|
|
|
|
| 109 |
decoded = gr.Textbox(label="Mammal output")
|
| 110 |
predicted_class = gr.Textbox(label="Mammal prediction")
|
| 111 |
with gr.Column():
|
| 112 |
+
non_norm_score = gr.Number(label="Non normalized score")
|
| 113 |
+
norm_score = gr.Number(label="normalized score")
|
| 114 |
run_mammal.click(
|
| 115 |
fn=self.create_and_run_prompt,
|
| 116 |
inputs=[model_name_widget, protein_textbox],
|