Update app.py
Browse files
app.py
CHANGED
@@ -171,6 +171,15 @@ def CTXGen(X0, X3, X1, X2, τ, g_num, model_name):
|
|
171 |
|
172 |
with gr.Blocks() as demo:
|
173 |
gr.Markdown("# Conotoxin Optimization Generation")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
with gr.Row():
|
175 |
X0 = gr.Textbox(label="conotoxin")
|
176 |
X3 = gr.Textbox(label="Positions that needs optimization")
|
|
|
171 |
|
172 |
with gr.Blocks() as demo:
|
173 |
gr.Markdown("# Conotoxin Optimization Generation")
|
174 |
+
gr.Markdown("# Input")
|
175 |
+
gr.Markdown("## Conotoxin: a conotoxin that needs to be optimized. For example, GCCSDPRCAWRC")
|
176 |
+
gr.Markdown("## Positions: the positions that need to be optimized, replaced by X. For example, GCCXXXXCAHRC")
|
177 |
+
gr.Markdown("## Subtype: subtype of action. For example, α7")
|
178 |
+
gr.Markdown("## Potency: required potency. For example, High")
|
179 |
+
gr.Markdown("## τ: temperature factor controls the diversity of conotoxins generated. The higher the value, the higher the diversity")
|
180 |
+
gr.Markdown("## Number of generations: if it is not completed within 1200 seconds, it will automatically stop.")
|
181 |
+
gr.Markdown("## Model: model parameters trained at different stages of data augmentation. Please refer to the paper for details.")
|
182 |
+
|
183 |
with gr.Row():
|
184 |
X0 = gr.Textbox(label="conotoxin")
|
185 |
X3 = gr.Textbox(label="Positions that needs optimization")
|