Commit
·
2438776
1
Parent(s):
ae7d50f
comment out lora
Browse filesI wanna see if it's my fault that it's bad
app.py
CHANGED
@@ -6,7 +6,7 @@ model_base = "runwayml/stable-diffusion-v1-5"
|
|
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)
|
10 |
pipe.to("cuda")
|
11 |
|
12 |
css = """
|
|
|
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)
|
10 |
pipe.to("cuda")
|
11 |
|
12 |
css = """
|