Update README.md
Browse files
README.md
CHANGED
@@ -56,7 +56,7 @@ ckpt_id = "black-forest-labs/FLUX.1-dev"
|
|
56 |
pipeline = FluxPipeline.from_pretrained(
|
57 |
ckpt_id, torch_dtype=torch.float16
|
58 |
)
|
59 |
-
pipeline.load_lora_weights("derekl35/
|
60 |
pipeline.enable_model_cpu_offload()
|
61 |
|
62 |
image = pipeline(
|
@@ -82,7 +82,7 @@ ckpt_id = "black-forest-labs/FLUX.1-dev"
|
|
82 |
pipeline = FluxPipeline.from_pretrained(
|
83 |
ckpt_id, text_encoder=None, text_encoder_2=None, torch_dtype=torch.float16
|
84 |
)
|
85 |
-
pipeline.load_lora_weights("derekl35/
|
86 |
pipeline.fuse_lora()
|
87 |
pipeline.unload_lora_weights()
|
88 |
|
@@ -111,7 +111,7 @@ ckpt_id = "black-forest-labs/FLUX.1-dev"
|
|
111 |
pipeline = FluxPipeline.from_pretrained(
|
112 |
ckpt_id, text_encoder=None, text_encoder_2=None, torch_dtype=torch.float16
|
113 |
)
|
114 |
-
pipeline.load_lora_weights("derekl35/
|
115 |
pipeline.fuse_lora()
|
116 |
pipeline.unload_lora_weights()
|
117 |
|
|
|
56 |
pipeline = FluxPipeline.from_pretrained(
|
57 |
ckpt_id, torch_dtype=torch.float16
|
58 |
)
|
59 |
+
pipeline.load_lora_weights("derekl35/tarot-qlora-flux", weight_name="pytorch_lora_weights.safetensors")
|
60 |
pipeline.enable_model_cpu_offload()
|
61 |
|
62 |
image = pipeline(
|
|
|
82 |
pipeline = FluxPipeline.from_pretrained(
|
83 |
ckpt_id, text_encoder=None, text_encoder_2=None, torch_dtype=torch.float16
|
84 |
)
|
85 |
+
pipeline.load_lora_weights("derekl35/tarot-qlora-flux", weight_name="pytorch_lora_weights.safetensors")
|
86 |
pipeline.fuse_lora()
|
87 |
pipeline.unload_lora_weights()
|
88 |
|
|
|
111 |
pipeline = FluxPipeline.from_pretrained(
|
112 |
ckpt_id, text_encoder=None, text_encoder_2=None, torch_dtype=torch.float16
|
113 |
)
|
114 |
+
pipeline.load_lora_weights("derekl35/tarot-qlora-flux", weight_name="pytorch_lora_weights.safetensors")
|
115 |
pipeline.fuse_lora()
|
116 |
pipeline.unload_lora_weights()
|
117 |
|