intro update
Browse files
app.py
CHANGED
|
@@ -151,9 +151,17 @@ with gr.Blocks(css="""
|
|
| 151 |
height: 127px;
|
| 152 |
}
|
| 153 |
""") as demo:
|
| 154 |
-
|
| 155 |
-
gr.Markdown(
|
| 156 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 157 |
with gr.Row():
|
| 158 |
with gr.Column():
|
| 159 |
example_selector = gr.Radio(label="Choose an example Raw Micrograph File", choices=list(example_files.keys()))
|
|
|
|
| 151 |
height: 127px;
|
| 152 |
}
|
| 153 |
""") as demo:
|
| 154 |
+
|
| 155 |
+
gr.Markdown(
|
| 156 |
+
'''
|
| 157 |
+
<div style="text-align: center;">
|
| 158 |
+
<h1>Draco Denoising Demo 🙉</h1>
|
| 159 |
+
<p style="font-size:16px;">Upload a raw micrograph or select a example to visualize the original and denoised results</p>
|
| 160 |
+
<p style="font-size:16px;">Our denoising model supports a bin-1 micrograph (ends with .mrc or .h5). To achieve the optimal performance, the input should be <strong>motion corrected</strong> before passing to model.</p>
|
| 161 |
+
</div>
|
| 162 |
+
'''
|
| 163 |
+
)
|
| 164 |
+
|
| 165 |
with gr.Row():
|
| 166 |
with gr.Column():
|
| 167 |
example_selector = gr.Radio(label="Choose an example Raw Micrograph File", choices=list(example_files.keys()))
|