habulaj commited on
Commit
5119c67
·
verified ·
1 Parent(s): 117de5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -41
app.py CHANGED
@@ -227,27 +227,7 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
227
  with gr.Group():
228
  model = gr.Text(label='Model', value='stabilityai/stable-diffusion-xl-base-1.0', placeholder='e.g. stabilityai/stable-diffusion-xl-base-1.0', info='Enter the HUB path for this model! The model must be converted to diffusers to work. We recommend SG161222/RealVisXL_V4.0 for realistic generations, for example. By default, SDXL 1.0 (stabilityai/stable-diffusion-xl-base-1.0) will be used.')
229
  vaecall = gr.Text(label='VAE', placeholder='e.g. madebyollin/sdxl-vae-fp16-fix', info='You can use the VAE that suits you best! Using an unfamiliar VAE or one that is not from the same base model mentioned above will result in errors or distorted images. You must enable "Use VAE" in advanced settings if you want to use a VAE.')
230
- lora = gr.Text(label='LoRA 1', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
231
- lora2 = gr.Text(label='LoRA 2', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
232
  controlnet_model = gr.Text(label='Controlnet', placeholder='e.g diffusers/controlnet-canny-sdxl-1.0')
233
- lora_scale = gr.Slider(
234
- info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
235
- label="Lora Scale 1",
236
- minimum=0.01,
237
- maximum=1,
238
- step=0.01,
239
- value=0.7,
240
- visible=False,
241
- )
242
- lora_scale2 = gr.Slider(
243
- info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
244
- label="Lora Scale 2",
245
- minimum=0.01,
246
- maximum=1,
247
- step=0.01,
248
- value=0.7,
249
- visible=False,
250
- )
251
  url = gr.Text(label='URL (Img2Img)', placeholder='e.g https://example.com/image.png')
252
  controlnet_img = gr.Text(label='URL (Controlnet)', placeholder='e.g https://example.com/image.png')
253
  controlnet_img2img = gr.Text(label='URL (Controlnet - IMG2IMG)', placeholder='e.g https://example.com/image.png')
@@ -273,27 +253,27 @@ with gr.Blocks(theme=theme, css="style.css") as demo:
273
  use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
274
  use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
275
  with gr.Row():
276
- gr.Caption("LoRAs")
277
- lora = gr.Text(label='LoRA 1', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
278
- lora2 = gr.Text(label='LoRA 2', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
279
- lora_scale = gr.Slider(
280
- info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
281
- label="Lora Scale 1",
282
- minimum=0.01,
283
- maximum=1,
284
- step=0.01,
285
- value=0.7,
286
- visible=False,
287
- )
288
- lora_scale2 = gr.Slider(
289
- info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
290
- label="Lora Scale 2",
291
- minimum=0.01,
292
- maximum=1,
293
- step=0.01,
294
- value=0.7,
295
- visible=False,
296
- )
297
  with gr.Row():
298
  negative_prompt = gr.Text(
299
  placeholder="Input Negative Prompt",
 
227
  with gr.Group():
228
  model = gr.Text(label='Model', value='stabilityai/stable-diffusion-xl-base-1.0', placeholder='e.g. stabilityai/stable-diffusion-xl-base-1.0', info='Enter the HUB path for this model! The model must be converted to diffusers to work. We recommend SG161222/RealVisXL_V4.0 for realistic generations, for example. By default, SDXL 1.0 (stabilityai/stable-diffusion-xl-base-1.0) will be used.')
229
  vaecall = gr.Text(label='VAE', placeholder='e.g. madebyollin/sdxl-vae-fp16-fix', info='You can use the VAE that suits you best! Using an unfamiliar VAE or one that is not from the same base model mentioned above will result in errors or distorted images. You must enable "Use VAE" in advanced settings if you want to use a VAE.')
 
 
230
  controlnet_model = gr.Text(label='Controlnet', placeholder='e.g diffusers/controlnet-canny-sdxl-1.0')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  url = gr.Text(label='URL (Img2Img)', placeholder='e.g https://example.com/image.png')
232
  controlnet_img = gr.Text(label='URL (Controlnet)', placeholder='e.g https://example.com/image.png')
233
  controlnet_img2img = gr.Text(label='URL (Controlnet - IMG2IMG)', placeholder='e.g https://example.com/image.png')
 
253
  use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
254
  use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
255
  with gr.Row():
256
+ gr.Caption("LoRAs")
257
+ lora = gr.Text(label='LoRA 1', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
258
+ lora2 = gr.Text(label='LoRA 2', placeholder='e.g. nerijs/pixel-art-xl', visible=False)
259
+ lora_scale = gr.Slider(
260
+ info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
261
+ label="Lora Scale 1",
262
+ minimum=0.01,
263
+ maximum=1,
264
+ step=0.01,
265
+ value=0.7,
266
+ visible=False,
267
+ )
268
+ lora_scale2 = gr.Slider(
269
+ info="The closer to 1, the more it will resemble LoRA, but errors may be visible.",
270
+ label="Lora Scale 2",
271
+ minimum=0.01,
272
+ maximum=1,
273
+ step=0.01,
274
+ value=0.7,
275
+ visible=False,
276
+ )
277
  with gr.Row():
278
  negative_prompt = gr.Text(
279
  placeholder="Input Negative Prompt",