Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -154,6 +154,18 @@ def process_and_save_image(height=1024, width=1024, steps=8, scales=3.5, prompt=
|
|
154 |
def get_random_seed():
|
155 |
return torch.randint(0, 1000000, (1,)).item()
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
# Gradio ์ธํฐํ์ด์ค
|
158 |
with gr.Blocks(
|
159 |
theme=gr.themes.Soft(),
|
@@ -256,7 +268,7 @@ with gr.Blocks(
|
|
256 |
examples=examples,
|
257 |
inputs=prompt,
|
258 |
outputs=output,
|
259 |
-
fn=
|
260 |
cache_examples=True,
|
261 |
examples_per_page=5
|
262 |
)
|
|
|
154 |
def get_random_seed():
|
155 |
return torch.randint(0, 1000000, (1,)).item()
|
156 |
|
157 |
+
|
158 |
+
def process_example(prompt):
|
159 |
+
return process_and_save_image(
|
160 |
+
height=1024,
|
161 |
+
width=1024,
|
162 |
+
steps=8,
|
163 |
+
scales=3.5,
|
164 |
+
prompt=prompt,
|
165 |
+
seed=get_random_seed()
|
166 |
+
)
|
167 |
+
|
168 |
+
|
169 |
# Gradio ์ธํฐํ์ด์ค
|
170 |
with gr.Blocks(
|
171 |
theme=gr.themes.Soft(),
|
|
|
268 |
examples=examples,
|
269 |
inputs=prompt,
|
270 |
outputs=output,
|
271 |
+
fn=process_example, # ์์ ๋ ํจ์ ์ฌ์ฉ
|
272 |
cache_examples=True,
|
273 |
examples_per_page=5
|
274 |
)
|