Update app.py
Browse filestrying to fix submit ban
app.py
CHANGED
@@ -87,10 +87,9 @@ with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
|
87 |
conditioning_image = gr.Image(label="Conditioning Image")
|
88 |
with gr.Row():
|
89 |
submit_btn = gr.Button(value="Submit")
|
90 |
-
submit_btn.click(fn=infer, inputs = [prompts, negative_prompts, conditioning_image], outputs = "gallery")
|
91 |
with gr.Row():
|
92 |
report = wandb_report(report_url)
|
93 |
-
|
94 |
|
95 |
#gr.Interface(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|
96 |
# examples=[["a Labrador crossing the road", "low quality", control_image]])
|
|
|
87 |
conditioning_image = gr.Image(label="Conditioning Image")
|
88 |
with gr.Row():
|
89 |
submit_btn = gr.Button(value="Submit")
|
|
|
90 |
with gr.Row():
|
91 |
report = wandb_report(report_url)
|
92 |
+
submit_btn.click(fn=infer, inputs = [prompts, negative_prompts, conditioning_image], outputs = "gallery")
|
93 |
|
94 |
#gr.Interface(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|
95 |
# examples=[["a Labrador crossing the road", "low quality", control_image]])
|