Spaces:
Running
Running
Commit ·
3d4d9f5
1
Parent(s): 2060674
gradio theme fix
Browse files
app.py
CHANGED
|
@@ -43,7 +43,7 @@ def process_file(file):
|
|
| 43 |
return results, report
|
| 44 |
|
| 45 |
def create_ui():
|
| 46 |
-
with gr.Blocks() as app:
|
| 47 |
gr.HTML("<p align='center'><img src='https://upload.wikimedia.org/wikipedia/en/0/08/Logo_for_Conference_on_Neural_Information_Processing_Systems.svg' alt='NeurIPS Logo' width='400'/></p>")
|
| 48 |
gr.Markdown("# 🥐 Croissant Validator for NeurIPS")
|
| 49 |
gr.Markdown("""
|
|
@@ -626,4 +626,4 @@ def create_ui():
|
|
| 626 |
|
| 627 |
if __name__ == "__main__":
|
| 628 |
app = create_ui()
|
| 629 |
-
app.launch(
|
|
|
|
| 43 |
return results, report
|
| 44 |
|
| 45 |
def create_ui():
|
| 46 |
+
with gr.Blocks(theme=gr.themes.Soft()) as app:
|
| 47 |
gr.HTML("<p align='center'><img src='https://upload.wikimedia.org/wikipedia/en/0/08/Logo_for_Conference_on_Neural_Information_Processing_Systems.svg' alt='NeurIPS Logo' width='400'/></p>")
|
| 48 |
gr.Markdown("# 🥐 Croissant Validator for NeurIPS")
|
| 49 |
gr.Markdown("""
|
|
|
|
| 626 |
|
| 627 |
if __name__ == "__main__":
|
| 628 |
app = create_ui()
|
| 629 |
+
app.launch()
|