ford442 commited on
Commit
2c07fa0
·
1 Parent(s): f9844ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -109,7 +109,7 @@ def load_and_prepare_model(model_id):
109
  "ford442/RealVisXL_V5.0_BF16": torch.bfloat16,
110
  }
111
  dtype = model_dtypes.get(model_id, torch.bfloat16) # Default to float32 if not found
112
- vae = AutoencoderKL.from_pretrained("ford442/sdxl-vae-bf16", torch_dtype=torch.bfloat16).to('cuda')
113
  pipe = StableDiffusionXLPipeline.from_pretrained(
114
  model_id,
115
  torch_dtype=torch.bfloat16,
@@ -119,6 +119,7 @@ def load_and_prepare_model(model_id):
119
  safety_checker=None,
120
  )
121
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
 
122
  pipe.to('cuda')
123
  return pipe
124
 
 
109
  "ford442/RealVisXL_V5.0_BF16": torch.bfloat16,
110
  }
111
  dtype = model_dtypes.get(model_id, torch.bfloat16) # Default to float32 if not found
112
+ vae = AutoencoderKL.from_pretrained("ford442/sdxl-vae-bf16", torch_dtype=torch.bfloat16,safety_checker=None).to('cuda')
113
  pipe = StableDiffusionXLPipeline.from_pretrained(
114
  model_id,
115
  torch_dtype=torch.bfloat16,
 
119
  safety_checker=None,
120
  )
121
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
122
+ pipe.to(torch.bfloat16)
123
  pipe.to('cuda')
124
  return pipe
125