Update app.py
Browse files
app.py
CHANGED
|
@@ -307,8 +307,8 @@ while run_server:
|
|
| 307 |
placeholder = "Enter text here."
|
| 308 |
input_text = gr.Textbox(label="Input Text", lines=4, placeholder=placeholder)
|
| 309 |
with gr.Column():
|
| 310 |
-
seedcomponent = gr.Number(label="Seed (default -1 = Random)", precision=0, value=
|
| 311 |
-
batchcount = gr.Number(label="Batch count", precision=0, value=
|
| 312 |
with gr.Row():
|
| 313 |
with gr.Column():
|
| 314 |
examples = [
|
|
|
|
| 307 |
placeholder = "Enter text here."
|
| 308 |
input_text = gr.Textbox(label="Input Text", lines=4, placeholder=placeholder)
|
| 309 |
with gr.Column():
|
| 310 |
+
seedcomponent = gr.Number(label="Seed (default -1 = Random)", precision=0, value=42)
|
| 311 |
+
batchcount = gr.Number(label="Batch count", precision=0, value=4)
|
| 312 |
with gr.Row():
|
| 313 |
with gr.Column():
|
| 314 |
examples = [
|