Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -64,15 +64,7 @@ top_k = gr.Slider(value=1, minimum=1, maximum=100, step=1, interactive=True, lab
|
|
| 64 |
seed = gr.Number(value=42, interactive=True, label="Seed", info="A starting point to initiate the generation process, put 0 for a random one")
|
| 65 |
|
| 66 |
examples = [
|
| 67 |
-
[
|
| 68 |
-
"A storefront with 'Text to Image' written on it.",
|
| 69 |
-
512,
|
| 70 |
-
1.2,
|
| 71 |
-
0.5,
|
| 72 |
-
1,
|
| 73 |
-
50,
|
| 74 |
-
42,
|
| 75 |
-
]
|
| 76 |
]
|
| 77 |
|
| 78 |
gr.Interface(
|
|
|
|
| 64 |
seed = gr.Number(value=42, interactive=True, label="Seed", info="A starting point to initiate the generation process, put 0 for a random one")
|
| 65 |
|
| 66 |
examples = [
|
| 67 |
+
["A storefront with 'Text to Image' written on it.", "fp16", 512, 1.2, 0.5, 1, 50, 42]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
]
|
| 69 |
|
| 70 |
gr.Interface(
|