Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -69,12 +69,13 @@ def infer(user_token, prompt, seed=42, randomize_seed=False, width=1024, height=
|
|
69 |
|
70 |
|
71 |
examples = [
|
72 |
-
"a man walking in the forest",
|
73 |
-
"a viking ship sailing down a river",
|
74 |
-
"a woman resting by an open fire",
|
75 |
-
"a sword fight in a medieval village"
|
76 |
]
|
77 |
|
|
|
78 |
with gr.Blocks(css="style.css") as natalie_diffusion:
|
79 |
with gr.Row():
|
80 |
with gr.Column(scale=1, elem_id="left-column"):
|
@@ -124,6 +125,7 @@ Generate images in the surreal style of artist [Natalie Kav](https://www.behance
|
|
124 |
cache_examples=False,
|
125 |
)
|
126 |
|
|
|
127 |
with gr.Column(scale=1, elem_id="right-column"):
|
128 |
result = gr.Image(label="", show_label=False, elem_id="generated-image")
|
129 |
|
|
|
69 |
|
70 |
|
71 |
examples = [
|
72 |
+
["your_token_here", "a man walking in the forest"],
|
73 |
+
["your_token_here", "a viking ship sailing down a river"],
|
74 |
+
["your_token_here", "a woman resting by an open fire"],
|
75 |
+
["your_token_here", "a sword fight in a medieval village"]
|
76 |
]
|
77 |
|
78 |
+
|
79 |
with gr.Blocks(css="style.css") as natalie_diffusion:
|
80 |
with gr.Row():
|
81 |
with gr.Column(scale=1, elem_id="left-column"):
|
|
|
125 |
cache_examples=False,
|
126 |
)
|
127 |
|
128 |
+
|
129 |
with gr.Column(scale=1, elem_id="right-column"):
|
130 |
result = gr.Image(label="", show_label=False, elem_id="generated-image")
|
131 |
|