ginipick commited on
Commit
9cce94f
ยท
verified ยท
1 Parent(s): 94c7aef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
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=process_and_save_image,
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
  )