Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -107,17 +107,17 @@ block = gr.Blocks(css=css)
|
|
107 |
|
108 |
examples = [
|
109 |
[
|
110 |
-
'
|
111 |
2,
|
112 |
7.5,
|
113 |
],
|
114 |
[
|
115 |
-
'
|
116 |
2,
|
117 |
7.5,
|
118 |
],
|
119 |
[
|
120 |
-
'
|
121 |
2,
|
122 |
7,
|
123 |
],
|
@@ -128,16 +128,12 @@ with block:
|
|
128 |
"""
|
129 |
<div style="text-align: center; max-width: 650px; margin: 0 auto;">
|
130 |
<div>
|
131 |
-
<img class="logo" src="https://lambdalabs.com/
|
132 |
style="margin: auto; max-width: 7rem;">
|
133 |
<h1 style="font-weight: 900; font-size: 3rem;">
|
134 |
-
|
135 |
</h1>
|
136 |
</div>
|
137 |
-
<p style="margin-bottom: 10px; font-size: 94%">
|
138 |
-
Generate new Naruto anime character from a text description,
|
139 |
-
<a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">created by Lambda Labs</a>.
|
140 |
-
</p>
|
141 |
</div>
|
142 |
"""
|
143 |
)
|
@@ -185,9 +181,8 @@ with block:
|
|
185 |
</p>
|
186 |
</div>
|
187 |
<div class="acknowledgments">
|
188 |
-
<p> Put in a text prompt and generate your own
|
189 |
<p>If you want to find out how we made this model read about it in <a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">this blog post</a>.
|
190 |
-
<p>And if you want to train your own Stable Diffusion variants, see our <a href="https://github.com/LambdaLabsML/examples/tree/main/stable-diffusion-finetuning">Examples Repo</a>!
|
191 |
<p>Trained by Eole Cervenka at <a href="https://lambdalabs.com/">Lambda Labs</a>.</p>
|
192 |
</div>
|
193 |
"""
|
|
|
107 |
|
108 |
examples = [
|
109 |
[
|
110 |
+
'Jeff Bezos, avatarart style person',
|
111 |
2,
|
112 |
7.5,
|
113 |
],
|
114 |
[
|
115 |
+
'Elon Musk, avatarart style person',
|
116 |
2,
|
117 |
7.5,
|
118 |
],
|
119 |
[
|
120 |
+
'Bill Gates, avatarart style person',
|
121 |
2,
|
122 |
7,
|
123 |
],
|
|
|
128 |
"""
|
129 |
<div style="text-align: center; max-width: 650px; margin: 0 auto;">
|
130 |
<div>
|
131 |
+
<img class="logo" src="https://lambdalabs.com/hubfs/logos/lambda-logo.svg" alt="Lambda Logo"
|
132 |
style="margin: auto; max-width: 7rem;">
|
133 |
<h1 style="font-weight: 900; font-size: 3rem;">
|
134 |
+
Avatar text to image
|
135 |
</h1>
|
136 |
</div>
|
|
|
|
|
|
|
|
|
137 |
</div>
|
138 |
"""
|
139 |
)
|
|
|
181 |
</p>
|
182 |
</div>
|
183 |
<div class="acknowledgments">
|
184 |
+
<p> Put in a text prompt and generate your own Avatar art style image!
|
185 |
<p>If you want to find out how we made this model read about it in <a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">this blog post</a>.
|
|
|
186 |
<p>Trained by Eole Cervenka at <a href="https://lambdalabs.com/">Lambda Labs</a>.</p>
|
187 |
</div>
|
188 |
"""
|