Update app.py
Browse filesAdding title and description back
app.py
CHANGED
@@ -70,6 +70,12 @@ def infer(prompts, negative_prompts, image):
|
|
70 |
return output
|
71 |
|
72 |
with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
with gr.Row():
|
74 |
with gr.Column():
|
75 |
prompts = gr.Textbox(label="Prompt", placeholder="yellow dog standing on a lawn, best quality, highres")
|
|
|
70 |
return output
|
71 |
|
72 |
with gr.Blocks(theme='kfahn/AnimalPose') as demo:
|
73 |
+
gr.Markdown(
|
74 |
+
"""
|
75 |
+
# Animal Pose Control Net
|
76 |
+
|
77 |
+
### This is a demo of Animal Pose ControlNet, which is a model trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
|
78 |
+
""")
|
79 |
with gr.Row():
|
80 |
with gr.Column():
|
81 |
prompts = gr.Textbox(label="Prompt", placeholder="yellow dog standing on a lawn, best quality, highres")
|