Font update
Browse files
app.py
CHANGED
@@ -152,17 +152,9 @@ with gr.Blocks(css="""
|
|
152 |
}
|
153 |
""") as demo:
|
154 |
# Centered Title and Description
|
155 |
-
with gr.Row():
|
156 |
-
gr.Markdown(
|
157 |
-
|
158 |
-
<div style="text-align: center; font-size: 30px; font-weight: bold; margin-bottom: 10px;">
|
159 |
-
Denoising Demo
|
160 |
-
</div>
|
161 |
-
<div style="text-align: center; font-size: 18px;">
|
162 |
-
Upload a Raw file or select an example to view the original and denoised images
|
163 |
-
</div>
|
164 |
-
"""
|
165 |
-
)
|
166 |
with gr.Row():
|
167 |
with gr.Column():
|
168 |
example_selector = gr.Radio(label="Choose an example Raw Micrograph File", choices=list(example_files.keys()))
|
|
|
152 |
}
|
153 |
""") as demo:
|
154 |
# Centered Title and Description
|
155 |
+
with gr.Row():
|
156 |
+
gr.Markdown("### Denoising Demo")
|
157 |
+
gr.Markdown("# Upload a Raw file or select an example to view the original and denoised images")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
with gr.Row():
|
159 |
with gr.Column():
|
160 |
example_selector = gr.Radio(label="Choose an example Raw Micrograph File", choices=list(example_files.keys()))
|