Krebzonide commited on
Commit
456be23
·
1 Parent(s): 56f7c2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ model_base = "Krebzonide/LazyMixPlus"
6
  lora_model_path = "Krebzonide/3a0s-w68r-4qw1-0"
7
 
8
  pipe = StableDiffusionPipeline.from_pretrained(model_base, torch_dtype=torch.float16, use_safetensors=True)
9
- pipe.unet.load_attn_procs(lora_model_path) working, commented to text base model------------------------------------
10
  #pipe.unet.load_attn_procs(lora_model_path, use_auth_token=True) test accessing a private model----------------------
11
  pipe.to("cuda")
12
 
 
6
  lora_model_path = "Krebzonide/3a0s-w68r-4qw1-0"
7
 
8
  pipe = StableDiffusionPipeline.from_pretrained(model_base, torch_dtype=torch.float16, use_safetensors=True)
9
+ pipe.unet.load_attn_procs(lora_model_path) #working, commented to text base model------------------------------------
10
  #pipe.unet.load_attn_procs(lora_model_path, use_auth_token=True) test accessing a private model----------------------
11
  pipe.to("cuda")
12