Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
·
3fd99ec
1
Parent(s):
6584d0a
Update app.py
Browse files
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 =
|
109 |
seed = 2
|
110 |
tf = Compose([
|
111 |
Resize(224),
|
@@ -151,9 +151,9 @@ def inference(text):
|
|
151 |
return pil_image
|
152 |
|
153 |
|
154 |
-
title = "
|
155 |
-
description = "Gradio demo for
|
156 |
-
article = "<p style='text-align: center'>colab by https://twitter.com/
|
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,
|