Spaces:
Runtime error
Runtime error
RamAnanth1
commited on
Commit
•
c6b395b
1
Parent(s):
7c6f916
Update app.py
Browse filesAdd an extended description
app.py
CHANGED
@@ -72,6 +72,11 @@ control_task_list = [
|
|
72 |
]
|
73 |
with block:
|
74 |
gr.Markdown("## Adding Conditional Control to Text-to-Image Diffusion Models")
|
|
|
|
|
|
|
|
|
|
|
75 |
with gr.Row():
|
76 |
with gr.Column():
|
77 |
input_image = gr.Image(source='upload', type="numpy")
|
|
|
72 |
]
|
73 |
with block:
|
74 |
gr.Markdown("## Adding Conditional Control to Text-to-Image Diffusion Models")
|
75 |
+
gr.HTML('''
|
76 |
+
<p style="margin-bottom: 10px; font-size: 94%">
|
77 |
+
This is a simple demo for ControlNet, which is a neural network structure to control diffusion models by adding extra conditions such as canny edge detection. The demo is based on the <a href="https://github.com/lllyasviel/ControlNet" style="text-decoration: underline;" target="_blank"> Github </a> implementation.
|
78 |
+
</p>
|
79 |
+
''')
|
80 |
with gr.Row():
|
81 |
with gr.Column():
|
82 |
input_image = gr.Image(source='upload', type="numpy")
|