Spaces:
Sleeping
Sleeping
change default value
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ with gr.Blocks(css="style.css", js="script.js") as demo:
|
|
49 |
minimum=0,
|
50 |
maximum=1,
|
51 |
step=0.05,
|
52 |
-
value=0.
|
53 |
run_button = gr.Button('Run')
|
54 |
with gr.Column(scale=2):
|
55 |
result_text = gr.Textbox(lines=3,
|
@@ -67,7 +67,7 @@ with gr.Blocks(css="style.css", js="script.js") as demo:
|
|
67 |
minimum=0,
|
68 |
maximum=1,
|
69 |
step=0.05,
|
70 |
-
value=0.
|
71 |
run_button2 = gr.Button('Run')
|
72 |
with gr.Column(scale=2):
|
73 |
result_text2 = gr.Textbox(lines=20,
|
|
|
49 |
minimum=0,
|
50 |
maximum=1,
|
51 |
step=0.05,
|
52 |
+
value=0.3)
|
53 |
run_button = gr.Button('Run')
|
54 |
with gr.Column(scale=2):
|
55 |
result_text = gr.Textbox(lines=3,
|
|
|
67 |
minimum=0,
|
68 |
maximum=1,
|
69 |
step=0.05,
|
70 |
+
value=0.3)
|
71 |
run_button2 = gr.Button('Run')
|
72 |
with gr.Column(scale=2):
|
73 |
result_text2 = gr.Textbox(lines=20,
|