ritwikraha commited on
Commit
c32a002
·
1 Parent(s): 547d326

chore: fixing gradio components

Browse files
Files changed (1) hide show
  1. app.py +7 -6
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.Row():
51
- 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")
52
- negative_prompt_input = gr.Textbox(label="Enter negative prompt", value="ugly face, multiple bodies, bad anatomy, disfigured, extra fingers", lines=2)
53
- guidance_scale_slider = gr.Slider(label="Guidance Scale", minimum=1, maximum=5, value=3)
54
- steps_slider = gr.Slider(label="Number of Inference Steps", minimum=20, maximum=100, value=50)
55
- submit_button = gr.Button("Generate Sketch")
 
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(