Spaces:
Running
on
A10G
Running
on
A10G
Commit
·
f5f6fef
1
Parent(s):
2af8ebe
update
Browse files
app.py
CHANGED
@@ -387,14 +387,16 @@ with gr.Blocks() as demo:
|
|
387 |
keywords = gr.Textbox(label="(Optional) Input your keywords here. Keywords should bu seperate by / (e.g., keyword1/keyword2/...)", placeholder="keyword1/keyword2")
|
388 |
|
389 |
# 这里加一个会话框
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
|
|
|
|
398 |
|
399 |
i.select(get_pixels,[i,t],[i])
|
400 |
redo.click(exe_redo, [i,t],[i])
|
@@ -406,7 +408,7 @@ with gr.Blocks() as demo:
|
|
406 |
slider_guidance = gr.Slider(minimum=1, maximum=9, value=7.5, step=0.5, label="Scale of classifier-free guidance", info="The scale of classifier-free guidance and is set to 7.5 in default.")
|
407 |
slider_batch = gr.Slider(minimum=1, maximum=4, value=4, step=1, label="Batch size", info="The number of images to be sampled.")
|
408 |
slider_temperature = gr.Slider(minimum=0.1, maximum=2, value=0.7, step=0.1, label="Temperature", info="Control the diversity of layout planner. Higher value indicates more diversity.")
|
409 |
-
slider_natural = gr.Checkbox(label="Natural image generation",
|
410 |
slider_seed = gr.Slider(minimum=1, maximum=10000, label="Seed", randomize=True)
|
411 |
button = gr.Button("Generate")
|
412 |
|
|
|
387 |
keywords = gr.Textbox(label="(Optional) Input your keywords here. Keywords should bu seperate by / (e.g., keyword1/keyword2/...)", placeholder="keyword1/keyword2")
|
388 |
|
389 |
# 这里加一个会话框
|
390 |
+
|
391 |
+
with gr.Accordion("(Optional) Template - Click to paint", open=False):
|
392 |
+
with gr.Row():
|
393 |
+
with gr.Column(scale=1):
|
394 |
+
i = gr.Image(label="Canvas", type='filepath', value=f'./gray256.jpg', height=256, width=256)
|
395 |
+
with gr.Column(scale=1):
|
396 |
+
t = gr.Textbox(label="Keyword", value='input_keyword')
|
397 |
+
redo = gr.Button(value='Redo - Cancel the last keyword') # 如何给b绑定事件
|
398 |
+
undo = gr.Button(value='Undo - Clear the canvas') # 如何给b绑定事件
|
399 |
+
skip_button = gr.Button(value='Skip - Operate next keyword') # 如何给b绑定事件
|
400 |
|
401 |
i.select(get_pixels,[i,t],[i])
|
402 |
redo.click(exe_redo, [i,t],[i])
|
|
|
408 |
slider_guidance = gr.Slider(minimum=1, maximum=9, value=7.5, step=0.5, label="Scale of classifier-free guidance", info="The scale of classifier-free guidance and is set to 7.5 in default.")
|
409 |
slider_batch = gr.Slider(minimum=1, maximum=4, value=4, step=1, label="Batch size", info="The number of images to be sampled.")
|
410 |
slider_temperature = gr.Slider(minimum=0.1, maximum=2, value=0.7, step=0.1, label="Temperature", info="Control the diversity of layout planner. Higher value indicates more diversity.")
|
411 |
+
slider_natural = gr.Checkbox(label="Natural image generation", value=False, info="The text position and content info will not be incorporated.")
|
412 |
slider_seed = gr.Slider(minimum=1, maximum=10000, label="Seed", randomize=True)
|
413 |
button = gr.Button("Generate")
|
414 |
|