Update app.py
Browse files
app.py
CHANGED
@@ -145,14 +145,13 @@ Web-UI by [Ma5onic](https://github.com/Ma5onic)
|
|
145 |
"""
|
146 |
theme = gr.themes.Base(
|
147 |
primary_hue="cyan",
|
148 |
-
secondary_hue="
|
149 |
-
neutral_hue="slate",
|
150 |
)
|
151 |
|
152 |
with gr.Blocks(theme=theme) as demo:
|
153 |
gr.Markdown(description)
|
154 |
input_string = gr.Text(label="YouTube Link/URL")
|
155 |
-
use_cpu = gr.Checkbox(label="Use CPU Only", value=
|
156 |
use_single_onnx = gr.Checkbox(label="Use Single ONNX", value=False)
|
157 |
large_overlap = gr.Number(label="Large Overlap", value=0.6)
|
158 |
small_overlap = gr.Number(label="Small Overlap", value=0.5)
|
|
|
145 |
"""
|
146 |
theme = gr.themes.Base(
|
147 |
primary_hue="cyan",
|
148 |
+
secondary_hue="cyan",
|
|
|
149 |
)
|
150 |
|
151 |
with gr.Blocks(theme=theme) as demo:
|
152 |
gr.Markdown(description)
|
153 |
input_string = gr.Text(label="YouTube Link/URL")
|
154 |
+
use_cpu = gr.Checkbox(label="Use CPU Only", value=True)
|
155 |
use_single_onnx = gr.Checkbox(label="Use Single ONNX", value=False)
|
156 |
large_overlap = gr.Number(label="Large Overlap", value=0.6)
|
157 |
small_overlap = gr.Number(label="Small Overlap", value=0.5)
|