Spaces:
Sleeping
Sleeping
Tolulope Ogunremi
commited on
Commit
·
29cd28a
1
Parent(s):
295a917
fixing gradio theme
Browse files
app.py
CHANGED
|
@@ -112,7 +112,7 @@ def create_integrated_gradio_interface(analyzer: MultiModelAnalyzer):
|
|
| 112 |
|
| 113 |
model_names = analyzer.get_model_names()
|
| 114 |
|
| 115 |
-
with gr.Blocks(title="Discrete Token Analysis"
|
| 116 |
gr.Markdown("#Discrete Token Phoneme Analysis")
|
| 117 |
# gr.Markdown("Compare HuBERT models and analyze discrete representations")
|
| 118 |
|
|
@@ -1006,6 +1006,7 @@ if __name__ == "__main__":
|
|
| 1006 |
# Create and launch interface
|
| 1007 |
demo = create_integrated_gradio_interface(analyzer)
|
| 1008 |
demo.launch(
|
|
|
|
| 1009 |
# server_port=args.port,
|
| 1010 |
# share=True # Creates public link
|
| 1011 |
)
|
|
|
|
| 112 |
|
| 113 |
model_names = analyzer.get_model_names()
|
| 114 |
|
| 115 |
+
with gr.Blocks(title="Discrete Token Analysis") as demo:
|
| 116 |
gr.Markdown("#Discrete Token Phoneme Analysis")
|
| 117 |
# gr.Markdown("Compare HuBERT models and analyze discrete representations")
|
| 118 |
|
|
|
|
| 1006 |
# Create and launch interface
|
| 1007 |
demo = create_integrated_gradio_interface(analyzer)
|
| 1008 |
demo.launch(
|
| 1009 |
+
theme=gr.themes.Soft()
|
| 1010 |
# server_port=args.port,
|
| 1011 |
# share=True # Creates public link
|
| 1012 |
)
|