Update app.py
Browse filesfix variable names
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 |
-
|
66 |
-
|
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():
|