Spaces:
Sleeping
Sleeping
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -97,7 +97,7 @@ def extract(text: str):
|
|
| 97 |
return spans
|
| 98 |
|
| 99 |
|
| 100 |
-
with gr.Blocks(title=TITLE) as demo:
|
| 101 |
gr.Markdown(f"# {TITLE}")
|
| 102 |
gr.Markdown(DESCRIPTION)
|
| 103 |
with gr.Row():
|
|
@@ -130,4 +130,4 @@ with gr.Blocks(title=TITLE) as demo:
|
|
| 130 |
|
| 131 |
|
| 132 |
if __name__ == "__main__":
|
| 133 |
-
demo.launch(
|
|
|
|
| 97 |
return spans
|
| 98 |
|
| 99 |
|
| 100 |
+
with gr.Blocks(title=TITLE, theme=gr.themes.Soft()) as demo:
|
| 101 |
gr.Markdown(f"# {TITLE}")
|
| 102 |
gr.Markdown(DESCRIPTION)
|
| 103 |
with gr.Row():
|
|
|
|
| 130 |
|
| 131 |
|
| 132 |
if __name__ == "__main__":
|
| 133 |
+
demo.launch()
|