Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
b20cbc9
1
Parent(s):
0531be0
version bump and interface changes
Browse files- app.py +3 -3
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -466,10 +466,10 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 466 |
interactive=True,
|
| 467 |
)
|
| 468 |
with gr.Column(scale=2):
|
| 469 |
-
gr.Markdown("###
|
| 470 |
with gr.Accordion("Progress & Output", open=True):
|
| 471 |
final_image_preview = gr.Image(
|
| 472 |
-
label="
|
| 473 |
type="filepath",
|
| 474 |
interactive=False,
|
| 475 |
)
|
|
@@ -480,7 +480,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 480 |
visible=False,
|
| 481 |
)
|
| 482 |
with gr.Row():
|
| 483 |
-
with gr.Accordion("Adjust Parameters", open=False):
|
| 484 |
args_for_accordion = get_script_args_info(
|
| 485 |
exclude_args=["--input_image"]
|
| 486 |
)
|
|
|
|
| 466 |
interactive=True,
|
| 467 |
)
|
| 468 |
with gr.Column(scale=2):
|
| 469 |
+
gr.Markdown("### Preview")
|
| 470 |
with gr.Accordion("Progress & Output", open=True):
|
| 471 |
final_image_preview = gr.Image(
|
| 472 |
+
label="Model Preview",
|
| 473 |
type="filepath",
|
| 474 |
interactive=False,
|
| 475 |
)
|
|
|
|
| 480 |
visible=False,
|
| 481 |
)
|
| 482 |
with gr.Row():
|
| 483 |
+
with gr.Accordion("Adjust Autoforge Parameters", open=False):
|
| 484 |
args_for_accordion = get_script_args_info(
|
| 485 |
exclude_args=["--input_image"]
|
| 486 |
)
|
requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
autoforge==1.7.
|
|
|
|
| 1 |
+
autoforge==1.7.2
|