Spaces:
Running on Zero
Running on Zero
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -132,7 +132,7 @@ CSS = """
|
|
| 132 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 133 |
"""
|
| 134 |
|
| 135 |
-
with gr.Blocks(
|
| 136 |
gr.Markdown(
|
| 137 |
"# 🔍 V-SPLADE Quality — Visual Document Retrieval\n"
|
| 138 |
"Upload a document page image and enter text queries to see the "
|
|
@@ -187,4 +187,4 @@ with gr.Blocks(css=CSS) as demo:
|
|
| 187 |
)
|
| 188 |
|
| 189 |
if __name__ == "__main__":
|
| 190 |
-
demo.launch(mcp_server=True, theme=gr.themes.Citrus())
|
|
|
|
| 132 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 133 |
"""
|
| 134 |
|
| 135 |
+
with gr.Blocks() as demo:
|
| 136 |
gr.Markdown(
|
| 137 |
"# 🔍 V-SPLADE Quality — Visual Document Retrieval\n"
|
| 138 |
"Upload a document page image and enter text queries to see the "
|
|
|
|
| 187 |
)
|
| 188 |
|
| 189 |
if __name__ == "__main__":
|
| 190 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|