Spaces:
Runtime error
Runtime error
Update app.py
Browse filesRemoving image input
app.py
CHANGED
@@ -61,12 +61,13 @@ 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 |
-
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, theme='gradio/soft').launch()
|
71 |
|
72 |
|
|
|
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 |
+
gr.Interface(fn = infer, inputs = ["text"], outputs = "image",
|
71 |
title = title, description = description, theme='gradio/soft').launch()
|
72 |
|
73 |
|