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

Update app.py

Browse files

trying to fix submit ban

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