Update app.py
Browse filestrying to fix submit ban
app.py
CHANGED
@@ -85,10 +85,9 @@ with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
|
85 |
negative_prompts = gr.Textbox(label="Negative Prompt")
|
86 |
with gr.Row():
|
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",
|
|
|
85 |
negative_prompts = gr.Textbox(label="Negative Prompt")
|
86 |
with gr.Row():
|
87 |
conditioning_image = gr.Image(label="Conditioning Image")
|
|
|
|
|
88 |
with gr.Row():
|
89 |
report = wandb_report(report_url)
|
90 |
+
submit_btn = gr.Button(value="Submit")
|
91 |
submit_btn.click(fn=infer, inputs = [prompts, negative_prompts, conditioning_image], outputs = "gallery")
|
92 |
|
93 |
#gr.Interface(fn=infer, inputs = ["text", "text", "image"], outputs = "gallery",
|