Spaces:
Runtime error
Runtime error
ritwikraha
commited on
Commit
·
c32a002
1
Parent(s):
547d326
chore: fixing gradio components
Browse files
app.py
CHANGED
@@ -47,12 +47,13 @@ This demo utilizes the SDXL model LoRA adaption weights for stabilityai/stable-d
|
|
47 |
with gr.Blocks() as demo:
|
48 |
gr.HTML("<h1><center>Text-to-Image with SDXL-Lightning ⚡</center></h1>")
|
49 |
gr.Markdown(description)
|
50 |
-
with gr.
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
56 |
output_image = gr.Image(label="Generated Sketch")
|
57 |
|
58 |
submit_button.click(
|
|
|
47 |
with gr.Blocks() as demo:
|
48 |
gr.HTML("<h1><center>Text-to-Image with SDXL-Lightning ⚡</center></h1>")
|
49 |
gr.Markdown(description)
|
50 |
+
with gr.Group():
|
51 |
+
with gr.Row():
|
52 |
+
prompt_input = gr.Textbox(label="Enter your image prompt", value="a sketch of TOK khabib pointing at another khabib like the spiderman meme, monchrome, pen sketch", scale=8)
|
53 |
+
negative_prompt_input = gr.Textbox(label="Enter negative prompt", value="ugly face, multiple bodies, bad anatomy, disfigured, extra fingers", lines=2)
|
54 |
+
guidance_scale_slider = gr.Slider(label="Guidance Scale", minimum=1, maximum=5, value=3)
|
55 |
+
steps_slider = gr.Slider(label="Number of Inference Steps", minimum=20, maximum=100, value=50)
|
56 |
+
submit_button = gr.Button("Generate Sketch")
|
57 |
output_image = gr.Image(label="Generated Sketch")
|
58 |
|
59 |
submit_button.click(
|