Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -196,7 +196,17 @@ def image_upsample(img: Image.Image) -> Image.Image:
|
|
196 |
|
197 |
|
198 |
# Gradio interface
|
199 |
-
with gr.Blocks(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
gr.Markdown(value="# Multimodal Understanding")
|
201 |
with gr.Row():
|
202 |
image_input = gr.Image()
|
|
|
196 |
|
197 |
|
198 |
# Gradio interface
|
199 |
+
with gr.Blocks(
|
200 |
+
theme='ParityError/Interstellar',
|
201 |
+
css="""
|
202 |
+
footer.svelte-sar7eh {
|
203 |
+
display: none !important;
|
204 |
+
}
|
205 |
+
#huggingface-space-header {
|
206 |
+
display: none !important;
|
207 |
+
}
|
208 |
+
"""
|
209 |
+
) as demo:
|
210 |
gr.Markdown(value="# Multimodal Understanding")
|
211 |
with gr.Row():
|
212 |
image_input = gr.Image()
|