Spaces:
Runtime error
Runtime error
RamAnanth1
commited on
Commit
•
d9bcb62
1
Parent(s):
9844e5d
Change UI slightly
Browse files- gradio_sketch.py +5 -4
gradio_sketch.py
CHANGED
@@ -14,10 +14,11 @@ def create_demo(process):
|
|
14 |
type_in = gr.inputs.Radio(['Sketch', 'Image'], type="value", default='Image', label='Input Types\n (You can input an image or a sketch)')
|
15 |
color_back = gr.inputs.Radio(['White', 'Black'], type="value", default='Black', label='Color of the sketch background\n (Only work for sketch input)')
|
16 |
run_button = gr.Button(label="Run")
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
21 |
with gr.Column():
|
22 |
result = gr.Gallery(label='Output', show_label=False, elem_id="gallery").style(grid=2, height='auto')
|
23 |
ips = [input_img, type_in, color_back, prompt, neg_prompt, fix_sample, scale, con_strength, base_model]
|
|
|
14 |
type_in = gr.inputs.Radio(['Sketch', 'Image'], type="value", default='Image', label='Input Types\n (You can input an image or a sketch)')
|
15 |
color_back = gr.inputs.Radio(['White', 'Black'], type="value", default='Black', label='Color of the sketch background\n (Only work for sketch input)')
|
16 |
run_button = gr.Button(label="Run")
|
17 |
+
with gr.Accordion("Advanced options", open=False):
|
18 |
+
con_strength = gr.Slider(label="Controling Strength (The guidance strength of the sketch to the result)", minimum=0, maximum=1, value=0.4, step=0.1)
|
19 |
+
scale = gr.Slider(label="Guidance Scale (Classifier free guidance)", minimum=0.1, maximum=30.0, value=7.5, step=0.1)
|
20 |
+
fix_sample = gr.inputs.Radio(['True', 'False'], type="value", default='False', label='Fix Sampling\n (Fix the random seed)')
|
21 |
+
base_model = gr.inputs.Radio(['sd-v1-4.ckpt', 'anything-v4.0-pruned.ckpt'], type="value", default='sd-v1-4.ckpt', label='The base model you want to use')
|
22 |
with gr.Column():
|
23 |
result = gr.Gallery(label='Output', show_label=False, elem_id="gallery").style(grid=2, height='auto')
|
24 |
ips = [input_img, type_in, color_back, prompt, neg_prompt, fix_sample, scale, con_strength, base_model]
|