fix scale bug

This commit is contained in:
holma91 2025-02-24 20:08:27 +01:00
parent e44c9f2c83
commit 84766d02e8

View File

@ -125,7 +125,7 @@ def generate_video(
# If you're using with lora, add this code # If you're using with lora, add this code
if lora_path: if lora_path:
pipe.load_lora_weights(lora_path, weight_name="pytorch_lora_weights.safetensors", adapter_name="test_1") pipe.load_lora_weights(lora_path, weight_name="pytorch_lora_weights.safetensors", adapter_name="test_1")
pipe.fuse_lora(components=["transformer"], lora_scale=1 / lora_rank) pipe.fuse_lora(components=["transformer"], lora_scale=1.0)
# 2. Set Scheduler. # 2. Set Scheduler.
# Can be changed to `CogVideoXDPMScheduler` or `CogVideoXDDIMScheduler`. # Can be changed to `CogVideoXDPMScheduler` or `CogVideoXDDIMScheduler`.