Spaces:
Running
Running
Pedro Cuenca
commited on
Commit
·
10b347e
1
Parent(s):
1b755b7
Text explanation.
Browse files
app.py
CHANGED
@@ -99,7 +99,18 @@ with gr.Blocks(css=".container { max-width: 800px; margin: auto; }") as demo:
|
|
99 |
)
|
100 |
return radio
|
101 |
|
102 |
-
gr.Markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
with gr.Group():
|
104 |
with gr.Box():
|
105 |
with gr.Row().style(mobile_collapse=False, equal_height=True):
|
|
|
99 |
)
|
100 |
return radio
|
101 |
|
102 |
+
gr.Markdown(
|
103 |
+
"""
|
104 |
+
<h1><center>Latent Diffusion Demo</center></h1>
|
105 |
+
<p>Type anything to generate a few images that represent your prompt.
|
106 |
+
Select one of the results to use as a <b>seed</b> for the next generation:
|
107 |
+
you can try variations of your prompt starting from the same state and see how it changes.
|
108 |
+
For example, <i>Labrador in the style of Vermeer</i> could be tweaked to
|
109 |
+
<i>Labrador in the style of Picasso</i> or <i>Lynx in the style of Van Gogh</i>.
|
110 |
+
If your prompts are similar, the tweaked result should also have a similar structure
|
111 |
+
but different details or style.</p>
|
112 |
+
"""
|
113 |
+
)
|
114 |
with gr.Group():
|
115 |
with gr.Box():
|
116 |
with gr.Row().style(mobile_collapse=False, equal_height=True):
|