Spaces:
Runtime error
Runtime error
Commit
·
18beb8e
1
Parent(s):
43aeb22
Update app.py
Browse files
app.py
CHANGED
@@ -147,8 +147,8 @@ def toggle(choice):
|
|
147 |
|
148 |
with gr.Blocks() as blocks:
|
149 |
gr.Markdown("""
|
150 |
-
## Generate
|
151 |
-
|
152 |
""")
|
153 |
with gr.Row():
|
154 |
with gr.Column():
|
@@ -183,5 +183,7 @@ with gr.Blocks() as blocks:
|
|
183 |
inputs=[image_in_img, prompt],
|
184 |
outputs=[gallery],
|
185 |
cache_examples=True)
|
186 |
-
|
|
|
|
|
187 |
blocks.launch()
|
|
|
147 |
|
148 |
with gr.Blocks() as blocks:
|
149 |
gr.Markdown("""
|
150 |
+
## Generate Uncanny Faces with ControlNet Stable Diffusion
|
151 |
+
[Check out our blog to see how this was done (and train your own controlnet)](https://huggingface.co/blog/train-your-controlnet)
|
152 |
""")
|
153 |
with gr.Row():
|
154 |
with gr.Column():
|
|
|
183 |
inputs=[image_in_img, prompt],
|
184 |
outputs=[gallery],
|
185 |
cache_examples=True)
|
186 |
+
gr.Markdown('''
|
187 |
+
This Space was trained on synthetic 3D faces to learn how to keep a pose - however it also learned that all faces are synthetic 3D faces, [learn more on our blog](https://huggingface.co/blog/train-your-controlnet), it uses a custom visualization based on SPIGA face landmarks for conditioning.
|
188 |
+
''')
|
189 |
blocks.launch()
|