Ahsen Khaliq commited on
Commit
3fd99ec
1 Parent(s): 6584d0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -105,7 +105,7 @@ w_stds = G.mapping(zs, None).std(0)
105
 
106
  def inference(text):
107
  target = clip_model.embed_text(text)
108
- steps = 10
109
  seed = 2
110
  tf = Compose([
111
  Resize(224),
@@ -151,9 +151,9 @@ def inference(text):
151
  return pil_image
152
 
153
 
154
- title = "StyleGAN+CLIP_with_Latent_Bootstraping"
155
- description = "Gradio demo for StyleGAN+CLIP_with_Latent_Bootstraping. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
156
- article = "<p style='text-align: center'>colab by https://twitter.com/EricHallahan <a href='https://colab.research.google.com/drive/1br7GP_D6XCgulxPTAFhwGaV-ijFe084X' target='_blank'>Colab</a></p>"
157
  examples = [['elon musk']]
158
  gr.Interface(
159
  inference,
 
105
 
106
  def inference(text):
107
  target = clip_model.embed_text(text)
108
+ steps = 20
109
  seed = 2
110
  tf = Compose([
111
  Resize(224),
 
151
  return pil_image
152
 
153
 
154
+ title = "StyleGAN3+CLIP"
155
+ description = "Gradio demo for StyleGAN3+CLIP. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
156
+ article = "<p style='text-align: center'>colab by https://twitter.com/nshepperd1 <a href='https://colab.research.google.com/drive/1eYlenR1GHPZXt-YuvXabzO9wfh9CWY36' target='_blank'>Colab</a></p>"
157
  examples = [['elon musk']]
158
  gr.Interface(
159
  inference,