Krebzonide commited on
Commit
f4f6fd9
·
1 Parent(s): 0c2c3bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -8,8 +8,18 @@ import gradio as gr
8
  model_base = "stabilityai/stable-diffusion-xl-base-1.0"
9
 
10
  vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16)
11
- pipe = StableDiffusionXLPipeline.from_pretrained(
12
- model_base, vae=vae, torch_dtype=torch.float16, variant="fp16", use_safetensors=True
 
 
 
 
 
 
 
 
 
 
13
  )
14
  pipe = pipe.to("cuda")
15
 
 
8
  model_base = "stabilityai/stable-diffusion-xl-base-1.0"
9
 
10
  vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16)
11
+
12
+ #pipe = StableDiffusionXLPipeline.from_pretrained(
13
+ # model_base, vae=vae, torch_dtype=torch.float16, variant="fp16", use_safetensors=True
14
+ #)
15
+
16
+ pipe = StableDiffusionXLPipeline.from_single_file(
17
+ "https://huggingface.co/Krebzonide/Colossus_Project_XL/blob/main/colossusProjectXLSFW_v202BakedVAE.safetensors",
18
+ torch_dtype = torch.float16,
19
+ variant = "fp16",
20
+ vae = vae,
21
+ use_safetensors = True,
22
+ scheduler_type = "ddim"
23
  )
24
  pipe = pipe.to("cuda")
25