ford442 commited on
Commit
ccd258f
·
1 Parent(s): b2eee37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -130,10 +130,10 @@ def load_and_prepare_model(model_id):
130
  # pipe.scheduler=EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
131
  #pipe.to(dtype=torch.bfloat16)
132
  pipe.unet = pipeX.unet
 
133
  pipe.to(device)
134
  pipe.unet.to(torch.bfloat16)
135
  pipe.vae.to(torch.bfloat16)
136
- pipe.scheduler=EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
137
  #pipe.to(torch.bfloat16)
138
  #pipe.to(device, torch.bfloat16)
139
  del pipeX
@@ -216,11 +216,11 @@ def generate_30(
216
  f.write(f"Steps: {num_inference_steps} \n")
217
  f.write(f"Guidance Scale: {guidance_scale} \n")
218
  f.write(f"SPACE SETUP: \n")
219
- f.write(f"Use Safetensors: no \n")
220
- f.write(f"Use Model Dtype: no \n")
221
- f.write(f"Model Scheduler: Euler_a custom \n")
222
- f.write(f"Model VAE: stabilityai/sdxl-vae \n")
223
- f.write(f"Model UNET: stabilityai after cuda \n")
224
  upload_to_ftp(filename)
225
  for i in range(0, num_images, BATCH_SIZE):
226
  batch_options = options.copy()
 
130
  # pipe.scheduler=EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
131
  #pipe.to(dtype=torch.bfloat16)
132
  pipe.unet = pipeX.unet
133
+ pipe.scheduler=EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
134
  pipe.to(device)
135
  pipe.unet.to(torch.bfloat16)
136
  pipe.vae.to(torch.bfloat16)
 
137
  #pipe.to(torch.bfloat16)
138
  #pipe.to(device, torch.bfloat16)
139
  del pipeX
 
216
  f.write(f"Steps: {num_inference_steps} \n")
217
  f.write(f"Guidance Scale: {guidance_scale} \n")
218
  f.write(f"SPACE SETUP: \n")
219
+ f.write(f"Use Safetensors: True \n")
220
+ f.write(f"Use Model Dtype: yes \n")
221
+ f.write(f"Model Scheduler: Euler_a custom before cuda \n")
222
+ f.write(f"Model VAE: stabilityai/sdxl-vae before cuda to bfloat after cuda \n")
223
+ f.write(f"Model UNET: stabilityai before cuda to bfloat after cuda \n")
224
  upload_to_ftp(filename)
225
  for i in range(0, num_images, BATCH_SIZE):
226
  batch_options = options.copy()