Update app.py
Browse filestrying to get it to restart
app.py
CHANGED
|
@@ -61,6 +61,11 @@ description = "This is a demo of Animal Pose ControlNet, which is a model traine
|
|
| 61 |
# This is a demo of Animal Pose Control Net, which is a model trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
|
| 62 |
#""")
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
gr.Interface(fn = infer, inputs = ["text", "text", "image"], outputs = "image",
|
| 65 |
title = title, description = description, examples = gr.examples, theme='gradio/soft').launch()
|
| 66 |
|
|
|
|
| 61 |
# This is a demo of Animal Pose Control Net, which is a model trained on runwayml/stable-diffusion-v1-5 with new type of conditioning.
|
| 62 |
#""")
|
| 63 |
|
| 64 |
+
theme = gr.themes.Default(primary_hue="green").set(
|
| 65 |
+
button_primary_background_fill="*primary_200",
|
| 66 |
+
button_primary_background_fill_hover="*primary_300",
|
| 67 |
+
)
|
| 68 |
+
|
| 69 |
gr.Interface(fn = infer, inputs = ["text", "text", "image"], outputs = "image",
|
| 70 |
title = title, description = description, examples = gr.examples, theme='gradio/soft').launch()
|
| 71 |
|