Update app.py
Browse filesupdate placeholder prompt
app.py
CHANGED
@@ -78,14 +78,13 @@ with gr.Blocks(css=".gradio-container {background-image: linear-gradient(to bott
|
|
78 |
<h1 style="text-align: center; font-size: 32px; color: white;">
|
79 |
π Animal Pose Control Net π
|
80 |
</h1>
|
81 |
-
<h3 style="text-align: left; font-size: 20px; color: white;"> This is a demo of Animal Pose ControlNet, which is a model trained on runwayml/stable-diffusion-v1-5 with a new type of conditioning.</h3>
|
82 |
<h3 style="text-align: left; font-size: 20px; color: white;"> While this is definitely a work in progress, you can still try it out by using the p5 sketch to create a keypoint image and using it as the conditioning image.</h3>
|
83 |
-
<h3 style="text-align: left; font-size: 20px; color: white;"> The model was generated as part of the Hugging Face Jax Diffusers sprint. Thank you to both Hugging Face and Google Cloud who provided the TPUs for training
|
84 |
-
<h3 style="text-align: left; font-size: 20px; color: white;"> The dataset was built using the OpenPifPaf Animalpose plugin.</h3>
|
85 |
""")
|
86 |
with gr.Row():
|
87 |
with gr.Column():
|
88 |
-
prompts = gr.Textbox(label="Prompt", placeholder="
|
89 |
negative_prompts = gr.Textbox(label="Negative Prompt", value="lowres, two heads, bad muzzle, bad anatomy, missing ears, missing paws")
|
90 |
conditioning_image = gr.Image(label="Conditioning Image")
|
91 |
# conditioning_image = gr.Image(label="Conditioning Image", value=default_example[3])
|
|
|
78 |
<h1 style="text-align: center; font-size: 32px; color: white;">
|
79 |
π Animal Pose Control Net π
|
80 |
</h1>
|
81 |
+
<h3 style="text-align: left; font-size: 20px; color: white;"> This is a demo of Animal Pose ControlNet, which is a model trained on runwayml/stable-diffusion-v1-5 with a new type of conditioning. The dataset was built using the OpenPifPaf Animalpose plugin.</h3>
|
82 |
<h3 style="text-align: left; font-size: 20px; color: white;"> While this is definitely a work in progress, you can still try it out by using the p5 sketch to create a keypoint image and using it as the conditioning image.</h3>
|
83 |
+
<h3 style="text-align: left; font-size: 20px; color: white;"> The model was generated as part of the Hugging Face Jax Diffusers sprint. Thank you to both Hugging Face and Google Cloud who provided the TPUs for training!</h3>
|
|
|
84 |
""")
|
85 |
with gr.Row():
|
86 |
with gr.Column():
|
87 |
+
prompts = gr.Textbox(label="Prompt", placeholder="dog standing in grass, best quality, highres")
|
88 |
negative_prompts = gr.Textbox(label="Negative Prompt", value="lowres, two heads, bad muzzle, bad anatomy, missing ears, missing paws")
|
89 |
conditioning_image = gr.Image(label="Conditioning Image")
|
90 |
# conditioning_image = gr.Image(label="Conditioning Image", value=default_example[3])
|