lvelho commited on
Commit
60acdf8
1 Parent(s): 6f0f981

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -14
app.py CHANGED
@@ -119,16 +119,6 @@ examples = [
119
  2,
120
  7.5,
121
  ],
122
- [
123
- 'Abraham Lincoln',
124
- 2,
125
- 7.5,
126
- ],
127
- [
128
- 'George Washington',
129
- 2,
130
- 7,
131
- ],
132
  ]
133
 
134
  with block:
@@ -136,15 +126,13 @@ with block:
136
  """
137
  <div style="text-align: center; max-width: 650px; margin: 0 auto;">
138
  <div>
139
- <img class="logo" src="https://lambdalabs.com/hubfs/logos/lambda-logo.svg" alt="Lambda Logo"
140
- style="margin: auto; max-width: 7rem;">
141
  <h1 style="font-weight: 900; font-size: 3rem;">
142
  Pokémon text to image
143
  </h1>
144
  </div>
145
  <p style="margin-bottom: 10px; font-size: 94%">
146
  Generate new Pokémon from a text description,
147
- <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>.
148
  </p>
149
  </div>
150
  """
@@ -196,7 +184,6 @@ with block:
196
  <p> Put in a text prompt and generate your own Pokémon character, no "prompt engineering" required!
197
  <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>.
198
  <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>!
199
- <p>Trained by <a href="justinpinkney.com">Justin Pinkney</a> (<a href="https://twitter.com/Buntworthy">@Buntworthy</a>) at <a href="https://lambdalabs.com/">Lambda Labs</a>.</p>
200
  </div>
201
  """
202
  )
 
119
  2,
120
  7.5,
121
  ],
 
 
 
 
 
 
 
 
 
 
122
  ]
123
 
124
  with block:
 
126
  """
127
  <div style="text-align: center; max-width: 650px; margin: 0 auto;">
128
  <div>
 
 
129
  <h1 style="font-weight: 900; font-size: 3rem;">
130
  Pokémon text to image
131
  </h1>
132
  </div>
133
  <p style="margin-bottom: 10px; font-size: 94%">
134
  Generate new Pokémon from a text description,
135
+ <a href="https://lambdalabs.com/blog/how-to-fine-tune-stable-diffusion-how-we-made-the-text-to-pokemon-model-at-lambda/">based on tutorial by Lambda Labs</a>.
136
  </p>
137
  </div>
138
  """
 
184
  <p> Put in a text prompt and generate your own Pokémon character, no "prompt engineering" required!
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>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>!
 
187
  </div>
188
  """
189
  )