Update app.py
Browse files
app.py
CHANGED
@@ -146,6 +146,11 @@ def CTXGen(Ο, g_num, length_range, model_name):
|
|
146 |
|
147 |
with gr.Blocks() as demo:
|
148 |
gr.Markdown("# Conotoxin Unconstrained Generation")
|
|
|
|
|
|
|
|
|
|
|
149 |
with gr.Row():
|
150 |
Ο = gr.Slider(minimum=1, maximum=2, step=0.1, label="Ο")
|
151 |
g_num = gr.Dropdown(choices=[1, 10, 20, 30, 40, 50], label="Number of generations")
|
|
|
146 |
|
147 |
with gr.Blocks() as demo:
|
148 |
gr.Markdown("# Conotoxin Unconstrained Generation")
|
149 |
+
gr.Markdown("#### Input")
|
150 |
+
gr.Markdown("β
**Ο**: temperature factor controls the diversity of conotoxins generated. The higher the value, the higher the diversity")
|
151 |
+
gr.Markdown("β
**Number of generations**: if it is not completed within 1200 seconds, it will automatically stop.")
|
152 |
+
gr.Markdown("β
**Length range**: expected length range of conotoxins generated")
|
153 |
+
gr.Markdown("β
**Model**: model parameters trained at different stages of data augmentation. Please refer to the paper for details.")
|
154 |
with gr.Row():
|
155 |
Ο = gr.Slider(minimum=1, maximum=2, step=0.1, label="Ο")
|
156 |
g_num = gr.Dropdown(choices=[1, 10, 20, 30, 40, 50], label="Number of generations")
|