Spaces:
Paused
Paused
Commit
·
bfccab3
1
Parent(s):
9960f8b
Update app.py
Browse files
app.py
CHANGED
@@ -90,8 +90,23 @@ examples = [
|
|
90 |
]
|
91 |
|
92 |
with demo:
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
with gr.Row():
|
96 |
with gr.Box():
|
97 |
name = gr.Textbox(label="Protein example", value=examples[1][0])
|
|
|
90 |
]
|
91 |
|
92 |
with demo:
|
93 |
+
gr.HTML("""<div style="text-align: center; max-width: 700px; margin: 0 auto;">
|
94 |
+
<div
|
95 |
+
style="
|
96 |
+
display: inline-flex;
|
97 |
+
align-items: center;
|
98 |
+
gap: 0.8rem;
|
99 |
+
font-size: 1.75rem;
|
100 |
+
"
|
101 |
+
>
|
102 |
+
<h1 style="font-weight: 900; margin-bottom: 7px; margin-top: 5px;">
|
103 |
+
ESM-2 Protein Folding demo
|
104 |
+
</h1>
|
105 |
+
</div>
|
106 |
+
<p style="margin-bottom: 10px; font-size: 94%">
|
107 |
+
You can input a single protein sequence and you get the predicted protein structure
|
108 |
+
</p>
|
109 |
+
</div>""")
|
110 |
with gr.Row():
|
111 |
with gr.Box():
|
112 |
name = gr.Textbox(label="Protein example", value=examples[1][0])
|