JayVv commited on
Commit
9c95e80
β€’
1 Parent(s): a0c4a7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,7 @@ checkpoints = {
15
  "Faster - low quality" : ["sdxl_lightning_1step_unet_x0.safetensors", 1],
16
  "Fast - better quality" : ["sdxl_lightning_2step_unet.safetensors", 2],
17
  "Lovely 🫦" : ["sdxl_lightning_4step_unet.safetensors", 4],
18
- "Slow - best Quality" : ["sdxl_lightning_8step_unet.safetensors", 8],
19
  }
20
  loaded = None
21
 
@@ -79,7 +79,7 @@ with gr.Blocks(css="style.css") as demo:
79
  with gr.Group():
80
  with gr.Row():
81
  prompt = gr.Textbox(label='Enter your prompt (English)', scale=5)
82
- ckpt = gr.Dropdown(label='Your preferences:', scale = 2, choices=['Faster - low quality', 'Fast - better quality', 'Lovely 🫦', 'Slow - best quality'], value='Lovely 🫦', interactive=True)
83
  submit = gr.Button(variant='primary', value='hit it')
84
  img = gr.Image(label='BadMoustache image πŸ€–')
85
 
 
15
  "Faster - low quality" : ["sdxl_lightning_1step_unet_x0.safetensors", 1],
16
  "Fast - better quality" : ["sdxl_lightning_2step_unet.safetensors", 2],
17
  "Lovely 🫦" : ["sdxl_lightning_4step_unet.safetensors", 4],
18
+ "Much better 😍" : ["sdxl_lightning_8step_unet.safetensors", 8],
19
  }
20
  loaded = None
21
 
 
79
  with gr.Group():
80
  with gr.Row():
81
  prompt = gr.Textbox(label='Enter your prompt (English)', scale=5)
82
+ ckpt = gr.Dropdown(label='Your preferences:', scale = 2, choices=['Faster - low quality', 'Fast - better quality', 'Lovely 🫦', 'Much better 😍'], value='Lovely 🫦', interactive=True)
83
  submit = gr.Button(variant='primary', value='hit it')
84
  img = gr.Image(label='BadMoustache image πŸ€–')
85