ford442 commited on
Commit
cf909ac
·
verified ·
1 Parent(s): fd9a040

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -81,13 +81,14 @@ device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
81
 
82
  def load_and_prepare_model():
83
  vaeXL = AutoencoderKL.from_pretrained("stabilityai/sdxl-vae", safety_checker=None, use_safetensors=False).to(device=device, dtype=torch.bfloat16)
 
84
  sched = EulerAncestralDiscreteScheduler.from_pretrained('ford442/RealVisXL_V5.0_BF16', subfolder='scheduler',beta_schedule="scaled_linear", beta_start=0.00085, beta_end=0.012, steps_offset=1,use_karras_sigmas=True)
85
  pipe = StableDiffusionXLPipeline.from_pretrained(
86
  'ford442/RealVisXL_V5.0_BF16',
87
  #torch_dtype=torch.bfloat16,
88
  add_watermarker=False,
89
  )
90
- pipe.vae = vaeXL #.to(torch.bfloat16)
91
  pipe.scheduler = sched
92
  pipe.vae.do_resize=False
93
  pipe.vae.vae_scale_factor=8
 
81
 
82
  def load_and_prepare_model():
83
  vaeXL = AutoencoderKL.from_pretrained("stabilityai/sdxl-vae", safety_checker=None, use_safetensors=False).to(device=device, dtype=torch.bfloat16)
84
+ vaeRV = AutoencoderKL.from_pretrained("stabilityai/RealVisXL_V5.0", safety_checker=None, use_safetensors=False).to(device).to(torch.bfloat16) #.to(device=device, dtype=torch.bfloat16)
85
  sched = EulerAncestralDiscreteScheduler.from_pretrained('ford442/RealVisXL_V5.0_BF16', subfolder='scheduler',beta_schedule="scaled_linear", beta_start=0.00085, beta_end=0.012, steps_offset=1,use_karras_sigmas=True)
86
  pipe = StableDiffusionXLPipeline.from_pretrained(
87
  'ford442/RealVisXL_V5.0_BF16',
88
  #torch_dtype=torch.bfloat16,
89
  add_watermarker=False,
90
  )
91
+ pipe.vae = vaeRV #.to(torch.bfloat16)
92
  pipe.scheduler = sched
93
  pipe.vae.do_resize=False
94
  pipe.vae.vae_scale_factor=8