kfahn commited on
Commit
0c78a46
1 Parent(s): e8b12f5

Update app.py

Browse files

trying to fix submit ban

Files changed (1) hide show
  1. app.py +1 -2
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]])