kfahn commited on
Commit
ab9e9ff
1 Parent(s): 125cff5

Update app.py

Browse files

fix variable names

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,8 +62,8 @@ with gr.Blocks(theme = mytheme) as demo:
62
  ## This is a demo of Animal Pose ControlNet, which is a model trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
63
  """)
64
  with gr.Column():
65
- pos_prompts = gr.Textbox(label="Prompt")
66
- neg_prompts = gr.Textbox(label="Negative Prompt")
67
  image = gr.Image()
68
 
69
  with gr.Column():
 
62
  ## This is a demo of Animal Pose ControlNet, which is a model trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
63
  """)
64
  with gr.Column():
65
+ prompts = gr.Textbox(label="Prompt")
66
+ negative_prompts = gr.Textbox(label="Negative Prompt")
67
  image = gr.Image()
68
 
69
  with gr.Column():