Felix-Xu commited on
Commit
19e554d
·
1 Parent(s): 0854b50

intro update

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -151,9 +151,17 @@ with gr.Blocks(css="""
151
  height: 127px;
152
  }
153
  """) as demo:
154
- # Centered Title and Description
155
- gr.Markdown("# Denoising Demo")
156
- gr.Markdown("Upload a Raw file or select an example to view the original and denoised images")
 
 
 
 
 
 
 
 
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()))