Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype
|
|
19 |
pipe = DiffusionPipeline.from_pretrained(
|
20 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
21 |
vae=vae, torch_dtype=torch.float16, variant="fp16",
|
22 |
-
|
23 |
)
|
24 |
|
25 |
device="cuda" if torch.cuda.is_available() else "cpu"
|
@@ -70,7 +70,7 @@ def load_model(custom_model):
|
|
70 |
return gr.update(choices=sfts_available_files, value=sfts_available_files[0], visible=True), gr.update(value=instance_prompt, visible=True)
|
71 |
|
72 |
|
73 |
-
|
74 |
def infer (custom_model, weight_name, prompt, inf_steps, guidance_scale, seed, lora_weight, progress=gr.Progress(track_tqdm=True)):
|
75 |
|
76 |
if weight_name == "NO SAFETENSORS FILE":
|
|
|
19 |
pipe = DiffusionPipeline.from_pretrained(
|
20 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
21 |
vae=vae, torch_dtype=torch.float16, variant="fp16",
|
22 |
+
use_safetensors=True
|
23 |
)
|
24 |
|
25 |
device="cuda" if torch.cuda.is_available() else "cpu"
|
|
|
70 |
return gr.update(choices=sfts_available_files, value=sfts_available_files[0], visible=True), gr.update(value=instance_prompt, visible=True)
|
71 |
|
72 |
|
73 |
+
|
74 |
def infer (custom_model, weight_name, prompt, inf_steps, guidance_scale, seed, lora_weight, progress=gr.Progress(track_tqdm=True)):
|
75 |
|
76 |
if weight_name == "NO SAFETENSORS FILE":
|