ginipick commited on
Commit
1cdb3dd
ยท
verified ยท
1 Parent(s): 8e812a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -170,7 +170,9 @@ def process_example(prompt):
170
  seed=get_random_seed()
171
  )
172
 
173
- # Gradio ์ธํ„ฐํŽ˜์ด์Šค ๋ถ€๋ถ„์„ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์ˆ˜์ •
 
 
174
  with gr.Blocks(
175
  theme=gr.themes.Soft(),
176
  css="""
@@ -311,14 +313,6 @@ with gr.Blocks(
311
  gallery_html += "</div>"
312
  gr.HTML(gallery_html)
313
 
314
- # Examples ์„น์…˜
315
- with gr.Row():
316
- gr.Examples(
317
- label="Example Prompts",
318
- examples=example_prompts,
319
- inputs=prompt
320
- )
321
-
322
  def update_seed():
323
  return get_random_seed()
324
 
 
170
  seed=get_random_seed()
171
  )
172
 
173
+ # example_prompts ๋ณ€์ˆ˜์™€ process_example ํ•จ์ˆ˜ ์ œ๊ฑฐ
174
+
175
+ # Gradio ์ธํ„ฐํŽ˜์ด์Šค์—์„œ Examples ์„น์…˜์„ ์ œ๊ฑฐํ•˜๊ณ  ๊ฐค๋Ÿฌ๋ฆฌ๋งŒ ๋‚จ๊น€
176
  with gr.Blocks(
177
  theme=gr.themes.Soft(),
178
  css="""
 
313
  gallery_html += "</div>"
314
  gr.HTML(gallery_html)
315
 
 
 
 
 
 
 
 
 
316
  def update_seed():
317
  return get_random_seed()
318